From d9cfbd5a6102cd0be5869b9f98a5a067b7a60e14 Mon Sep 17 00:00:00 2001 From: Andrew Boie Date: Fri, 8 Jan 2016 00:46:14 -0800 Subject: interrupts: new static IRQ API The interrupt API has been redesigned: - irq_connect() for dynamic interrupts renamed to irq_connect_dynamic(). It will be used in situations where the new static irq_connect() won't work, i.e. the value of arguments can't be computed at build time - a new API for static interrupts replaces irq_connect(). it is used exactly the same way as its dynamic counterpart. The old static irq macros will be removed - Separate stub assembly files are no longer needed as the stubs are now generated inline with irq_connect() ReST documentation updated for the changed API. Some detail about the IDT in ROM added, and an oblique reference to the internal-only _irq_handler_set() API removed; we don't talk about internal APIs in the official documentation. Change-Id: I280519993da0e0fe671eb537a876f67de33d3cd4 Signed-off-by: Andrew Boie --- drivers/rtc/Makefile | 1 - 1 file changed, 1 deletion(-) (limited to 'drivers/rtc/Makefile') diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile index 35115e65f..e1aa56b40 100644 --- a/drivers/rtc/Makefile +++ b/drivers/rtc/Makefile @@ -1,5 +1,4 @@ ccflags-$(CONFIG_RTC_QMSI) += -I$(CONFIG_QMSI_INSTALL_PATH)/include -obj-$(CONFIG_RTC) += rtc_static_irq_stubs.o obj-$(CONFIG_RTC_DW) += rtc_dw.o obj-$(CONFIG_RTC_QMSI) += rtc_qmsi.o -- cgit v1.2.3