summaryrefslogtreecommitdiffstats
path: root/cpukit/libpci/pci_irq.c
blob: e379852c8b080474bce95f8d1a8e02d4f8b93224 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*  PCI IRQ Library
 *
 *  COPYRIGHT (c) 2010.
 *  Cobham Gaisler AB.
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 */

#include <pci.h>
#include <pci/access.h>
#include <pci/irq.h>

int pci_dev_irq(pci_dev_t dev)
{
	uint8_t irq_line;
	pci_cfg_r8(dev, PCI_INTERRUPT_LINE, &irq_line);
	return irq_line;
}