mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 01:28:00 -04:00
arm: Convert drivers to use device_set_desc(f)()
No functional change intended. MFC after: 1 week (cherry picked from commit 459dc61c8b05dedb61a2774348ffda7d7f8ea7c6)
This commit is contained in:
parent
5c20fc180d
commit
ad0f458ade
3 changed files with 3 additions and 8 deletions
|
|
@ -651,7 +651,7 @@ tegra_ahci_probe(device_t dev)
|
|||
if (!ofw_bus_search_compatible(dev, compat_data)->ocd_data)
|
||||
return (ENXIO);
|
||||
|
||||
device_set_desc_copy(dev, "AHCI SATA controller");
|
||||
device_set_desc(dev, "AHCI SATA controller");
|
||||
return (BUS_PROBE_DEFAULT);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -249,7 +249,6 @@ am335x_dmtimer_tc_init(struct am335x_dmtimer_softc *sc)
|
|||
static int
|
||||
am335x_dmtimer_probe(device_t dev)
|
||||
{
|
||||
char strbuf[32];
|
||||
int tmr_num;
|
||||
uint64_t rev_address;
|
||||
|
||||
|
|
@ -277,8 +276,7 @@ am335x_dmtimer_probe(device_t dev)
|
|||
return (ENXIO);
|
||||
}
|
||||
|
||||
snprintf(strbuf, sizeof(strbuf), "AM335x DMTimer%d", tmr_num);
|
||||
device_set_desc_copy(dev, strbuf);
|
||||
device_set_descf("AM335x DMTimer%d", tmr_num);
|
||||
|
||||
return(BUS_PROBE_DEFAULT);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -383,7 +383,6 @@ static struct cdevsw dmtpps_cdevsw = {
|
|||
static int
|
||||
dmtpps_probe(device_t dev)
|
||||
{
|
||||
char strbuf[64];
|
||||
int tmr_num;
|
||||
uint64_t rev_address;
|
||||
|
||||
|
|
@ -435,9 +434,7 @@ dmtpps_probe(device_t dev)
|
|||
if (dmtpps_tmr_num != tmr_num)
|
||||
return (ENXIO);
|
||||
|
||||
snprintf(strbuf, sizeof(strbuf), "AM335x PPS-Capture DMTimer%d",
|
||||
tmr_num);
|
||||
device_set_desc_copy(dev, strbuf);
|
||||
device_set_descf("AM335x PPS-Capture DMTimer%d", tmr_num);
|
||||
|
||||
return(BUS_PROBE_DEFAULT);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue