mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
Backed out a part of previous commit. The function name conflicts.
Pointed out by: haro@tk.kubota.co.jp (Munehiro Matsuda)
This commit is contained in:
parent
e547d6fd34
commit
d70f8cefa0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=63011
@ -108,7 +108,7 @@ gdc_identify(driver_t *driver, device_t parent)
|
||||
}
|
||||
|
||||
static int
|
||||
gdc_probe(device_t dev)
|
||||
gdcprobe(device_t dev)
|
||||
{
|
||||
gdc_softc_t *sc;
|
||||
|
||||
@ -235,7 +235,7 @@ gdcmmap(dev_t dev, vm_offset_t offset, int prot)
|
||||
|
||||
static device_method_t gdc_methods[] = {
|
||||
DEVMETHOD(device_identify, gdc_identify),
|
||||
DEVMETHOD(device_probe, gdc_probe),
|
||||
DEVMETHOD(device_probe, gdcprobe),
|
||||
DEVMETHOD(device_attach, gdc_attach),
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
@ -108,7 +108,7 @@ gdc_identify(driver_t *driver, device_t parent)
|
||||
}
|
||||
|
||||
static int
|
||||
gdc_probe(device_t dev)
|
||||
gdcprobe(device_t dev)
|
||||
{
|
||||
gdc_softc_t *sc;
|
||||
|
||||
@ -235,7 +235,7 @@ gdcmmap(dev_t dev, vm_offset_t offset, int prot)
|
||||
|
||||
static device_method_t gdc_methods[] = {
|
||||
DEVMETHOD(device_identify, gdc_identify),
|
||||
DEVMETHOD(device_probe, gdc_probe),
|
||||
DEVMETHOD(device_probe, gdcprobe),
|
||||
DEVMETHOD(device_attach, gdc_attach),
|
||||
{ 0, 0 }
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user