rtlx.c (f0cd91a68acdc9b49d7f6738b514a426da627649) | rtlx.c (f40298fddcc3c8115c6135c9733f5a0de52dcea9) |
---|---|
1/* 2 * Copyright (C) 2005 MIPS Technologies, Inc. All rights reserved. 3 * Copyright (C) 2005, 06 Ralf Baechle (ralf@linux-mips.org) 4 * 5 * This program is free software; you can distribute it and/or modify it 6 * under the terms of the GNU General Public License (Version 2) as 7 * published by the Free Software Foundation. 8 * --- 473 unchanged lines hidden (view full) --- 482 .release = file_release, 483 .write = file_write, 484 .read = file_read, 485 .poll = file_poll 486}; 487 488static struct irqaction rtlx_irq = { 489 .handler = rtlx_interrupt, | 1/* 2 * Copyright (C) 2005 MIPS Technologies, Inc. All rights reserved. 3 * Copyright (C) 2005, 06 Ralf Baechle (ralf@linux-mips.org) 4 * 5 * This program is free software; you can distribute it and/or modify it 6 * under the terms of the GNU General Public License (Version 2) as 7 * published by the Free Software Foundation. 8 * --- 473 unchanged lines hidden (view full) --- 482 .release = file_release, 483 .write = file_write, 484 .read = file_read, 485 .poll = file_poll 486}; 487 488static struct irqaction rtlx_irq = { 489 .handler = rtlx_interrupt, |
490 .flags = SA_INTERRUPT, | 490 .flags = IRQF_DISABLED, |
491 .name = "RTLX", 492}; 493 494static int rtlx_irq_num = MIPSCPU_INT_BASE + MIPS_CPU_RTLX_IRQ; 495 496static char register_chrdev_failed[] __initdata = 497 KERN_ERR "rtlx_module_init: unable to register device\n"; 498 --- 42 unchanged lines hidden --- | 491 .name = "RTLX", 492}; 493 494static int rtlx_irq_num = MIPSCPU_INT_BASE + MIPS_CPU_RTLX_IRQ; 495 496static char register_chrdev_failed[] __initdata = 497 KERN_ERR "rtlx_module_init: unable to register device\n"; 498 --- 42 unchanged lines hidden --- |