mirror of
https://github.com/opnsense/src.git
synced 2026-06-12 18:20:49 -04:00
ti/am335x: Fix the device_set_descf() call in dmtpps_probe()
Fixes:459dc61c8b("arm: Convert drivers to use device_set_desc(f)()") (cherry picked from commit3ce9b2ee94)
This commit is contained in:
parent
aab8a370cc
commit
2faee677d5
1 changed files with 1 additions and 1 deletions
|
|
@ -434,7 +434,7 @@ dmtpps_probe(device_t dev)
|
|||
if (dmtpps_tmr_num != tmr_num)
|
||||
return (ENXIO);
|
||||
|
||||
device_set_descf("AM335x PPS-Capture DMTimer%d", tmr_num);
|
||||
device_set_descf(dev, "AM335x PPS-Capture DMTimer%d", tmr_num);
|
||||
|
||||
return(BUS_PROBE_DEFAULT);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue