repo.or.cz
/
hh.org.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
sync hh.org
[hh.org.git]
/
arch
/
mips
/
pci
/
pci-ev64120.c
blob
9cd859ef184262538750e9858cdd73a2ed48e861
1
#include <linux/pci.h>
2
3
int
__init
pcibios_map_irq
(
struct
pci_dev
*
dev
,
u8 slot
,
u8 pin
)
4
{
5
int
irq
;
6
7
if
(!
pin
)
8
return
0
;
9
10
irq
=
allocate_irqno
();
11
if
(
irq
<
0
)
12
return
0
;
13
14
return
irq
;
15
}
16
17
/* Do platform specific device initialization at pci_enable_device() time */
18
int
pcibios_plat_dev_init
(
struct
pci_dev
*
dev
)
19
{
20
return
0
;
21
}