Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

isdn: Free irq_data namespace

The irq_data namespace is the preference for the generic irq
layer. Rename the union typedef in drivers/isdn/act2000/act2000.h

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Ingo Molnar <mingo@elte.hu>

+3 -3
+3 -3
drivers/isdn/act2000/act2000.h
··· 141 141 __u8 rcvhdr[8]; 142 142 } irq_data_isa; 143 143 144 - typedef union irq_data { 144 + typedef union act2000_irq_data { 145 145 irq_data_isa isa; 146 - } irq_data; 146 + } act2000_irq_data; 147 147 148 148 /* 149 149 * Per card driver data ··· 176 176 char *status_buf_read; 177 177 char *status_buf_write; 178 178 char *status_buf_end; 179 - irq_data idat; /* Data used for IRQ handler */ 179 + act2000_irq_data idat; /* Data used for IRQ handler */ 180 180 isdn_if interface; /* Interface to upper layer */ 181 181 char regname[35]; /* Name used for request_region */ 182 182 } act2000_card;