Renamed findproc() to _pm_findproc() to reduce polluting of application

namespace.
This commit is contained in:
Ben Gras
2006-03-25 04:49:04 +00:00
parent d9544b38d3
commit 7b58dd7f9b
13 changed files with 20 additions and 21 deletions

View File

@@ -20,9 +20,9 @@ char *name;
size_t len;
message m;
r= findproc("pci", &pci_procnr);
r= _pm_findproc("pci", &pci_procnr);
if (r != 0)
panic("pci", "pci_init1: findproc failed for 'pci'", r);
panic("pci", "pci_init1: _pm_findproc failed for 'pci'", r);
m.m_type= BUSC_PCI_INIT;
len= strlen(name);