git.ucc.asn.au
/
tpg
/
acess2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1b67d9b
)
Fixed mismatch between generated file name and FindDir's filenames in PCI
author
John Hodge
<
[email protected]
>
Sat, 26 Sep 2009 03:10:05 +0000
(11:10 +0800)
committer
John Hodge
<
[email protected]
>
Sat, 26 Sep 2009 03:10:05 +0000
(11:10 +0800)
Kernel/drv/pci.c
patch
|
blob
|
history
diff --git
a/Kernel/drv/pci.c
b/Kernel/drv/pci.c
index
0519a3e
..
c52ab63
100644
(file)
--- a/
Kernel/drv/pci.c
+++ b/
Kernel/drv/pci.c
@@
-468,7
+468,7
@@
int PCI_EnumDevice(Uint16 bus, Uint16 slot, Uint16 fcn, t_pciDevice *info)
info->Name[2] = '.';
\r
info->Name[3] = '0' + slot/10;
\r
info->Name[4] = '0' + slot%10;
\r
- info->Name[5] = '
.
';
\r
+ info->Name[5] = '
:
';
\r
info->Name[6] = '0' + fcn;
\r
info->Name[7] = '\0';
\r
\r
UCC
git Repository :: git.ucc.asn.au