Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSamiQemu
QOSamiQemu
/
include
/
hw
/
pci-host
/
ppce500.h
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
h
9 lines
168 Bytes
Copy permalink
Copy
Raw
1
#ifndef PCI_HOST_PPCE500_H
2
#define PCI_HOST_PPCE500_H
3
4
static
inline
int
ppce500_pci_map_irq_slot
(
int
devno
,
int
irq_num
)
5
{
6
return
(
devno
+
irq_num
)
%
4
;
7
}
8
9
#endif