In sys/arm/ti/am335x/am335x_rtc.c, fix a clang 3.6.0 warning about
am33x_rtc_softc::sc_irq_res (which is an array) never being NULL. Submitted by: andrew MFC after: 3 days
This commit is contained in:
parent
fb48e1d39c
commit
9e950417ce
@ -137,7 +137,7 @@ am335x_rtc_detach(device_t dev)
|
||||
struct am335x_rtc_softc *sc;
|
||||
|
||||
sc = device_get_softc(dev);
|
||||
if (sc->sc_irq_res)
|
||||
if (sc->sc_irq_res[0] != NULL)
|
||||
bus_release_resources(dev, am335x_rtc_irq_spec, sc->sc_irq_res);
|
||||
if (sc->sc_mem_res)
|
||||
bus_release_resource(dev, SYS_RES_MEMORY, 0, sc->sc_mem_res);
|
||||
|
Loading…
Reference in New Issue
Block a user