ifp->if_name can't be null when we just assigned a static string to it.

This commit is contained in:
Brooks Davis 2003-10-30 23:05:31 +00:00
parent 9c63e9dbd7
commit 0f2f39c865

View File

@ -143,11 +143,6 @@ awi_pccard_attach(device_t dev)
ifp->if_name = "awi";
ifp->if_unit = device_get_unit(dev);
if (ifp->if_name == NULL) {
printf("awi%d: awi_pccard_attach: cannot get device name\n",
device_get_unit(dev));
goto fail;
}
snprintf(sc->sc_dev.dv_xname, sizeof(sc->sc_dev.dv_xname),
"%s%d", ifp->if_name, ifp->if_unit);