dc21285.c (95d465fd750897ab32462a6702fbfe1b122cbbc0) dc21285.c (52e405eaa9806968e88b35d65e57acad954a5ab5)
1/*
2 * linux/arch/arm/kernel/dec21285.c: PCI functions for DC21285
3 *
4 * Copyright (C) 1998-2001 Russell King
5 * Copyright (C) 1998-2000 Phil Blundell
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as

--- 318 unchanged lines hidden (view full) ---

327 serr_timer.data = IRQ_PCI_SERR;
328 serr_timer.function = dc21285_enable_error;
329 perr_timer.data = IRQ_PCI_PERR;
330 perr_timer.function = dc21285_enable_error;
331
332 /*
333 * We don't care if these fail.
334 */
1/*
2 * linux/arch/arm/kernel/dec21285.c: PCI functions for DC21285
3 *
4 * Copyright (C) 1998-2001 Russell King
5 * Copyright (C) 1998-2000 Phil Blundell
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as

--- 318 unchanged lines hidden (view full) ---

327 serr_timer.data = IRQ_PCI_SERR;
328 serr_timer.function = dc21285_enable_error;
329 perr_timer.data = IRQ_PCI_PERR;
330 perr_timer.function = dc21285_enable_error;
331
332 /*
333 * We don't care if these fail.
334 */
335 request_irq(IRQ_PCI_SERR, dc21285_serr_irq, SA_INTERRUPT,
335 request_irq(IRQ_PCI_SERR, dc21285_serr_irq, IRQF_DISABLED,
336 "PCI system error", &serr_timer);
336 "PCI system error", &serr_timer);
337 request_irq(IRQ_PCI_PERR, dc21285_parity_irq, SA_INTERRUPT,
337 request_irq(IRQ_PCI_PERR, dc21285_parity_irq, IRQF_DISABLED,
338 "PCI parity error", &perr_timer);
338 "PCI parity error", &perr_timer);
339 request_irq(IRQ_PCI_ABORT, dc21285_abort_irq, SA_INTERRUPT,
339 request_irq(IRQ_PCI_ABORT, dc21285_abort_irq, IRQF_DISABLED,
340 "PCI abort", NULL);
340 "PCI abort", NULL);
341 request_irq(IRQ_DISCARD_TIMER, dc21285_discard_irq, SA_INTERRUPT,
341 request_irq(IRQ_DISCARD_TIMER, dc21285_discard_irq, IRQF_DISABLED,
342 "Discard timer", NULL);
342 "Discard timer", NULL);
343 request_irq(IRQ_PCI_DPERR, dc21285_dparity_irq, SA_INTERRUPT,
343 request_irq(IRQ_PCI_DPERR, dc21285_dparity_irq, IRQF_DISABLED,
344 "PCI data parity", NULL);
345
346 if (cfn_mode) {
347 static struct resource csrio;
348
349 csrio.flags = IORESOURCE_IO;
350 csrio.name = "Footbridge";
351

--- 31 unchanged lines hidden ---
344 "PCI data parity", NULL);
345
346 if (cfn_mode) {
347 static struct resource csrio;
348
349 csrio.flags = IORESOURCE_IO;
350 csrio.name = "Footbridge";
351

--- 31 unchanged lines hidden ---