ppi_probe: eliminate unused variable ppi

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2022-04-04 20:12:17 -06:00
parent 09b966ee7c
commit de80fb0ace

View File

@ -149,13 +149,9 @@ ppi_identify(driver_t *driver, device_t parent)
static int
ppi_probe(device_t dev)
{
struct ppi_data *ppi;
/* probe is always ok */
device_set_desc(dev, "Parallel I/O");
ppi = DEVTOSOFTC(dev);
return (0);
}