irq: removes priority parameter from IRQ_CONFIG macro
Removes the 'priority' parameter from the IRQ_CONFIG macro. This parameter was not used anymore in any architecture. The priority is handled in the IRQ_CONNECT macro. The documentation is updated as well. Change-Id: I24a293c5e41bd729d5e759113e0c4a8a6a61e0dd Signed-off-by: Juan Manuel Cruz <juan.m.cruz.alcaraz@linux.intel.com>
This commit is contained in:
parent
4d7181b762
commit
bc1a79c4c3
21 changed files with 27 additions and 31 deletions
|
@ -138,7 +138,7 @@ static struct rtc_driver_api funcs = {
|
|||
|
||||
int rtc_dw_init(struct device *dev)
|
||||
{
|
||||
IRQ_CONFIG(rtc, INT_RTC_IRQ, 0);
|
||||
IRQ_CONFIG(rtc, INT_RTC_IRQ);
|
||||
irq_enable(INT_RTC_IRQ);
|
||||
SCSS_INTERRUPT->int_rtc_mask = INT_UNMASK_IA;
|
||||
dev->driver_api = &funcs;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue