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:
Dimitry Andric 2015-02-26 07:45:40 +00:00
parent fb48e1d39c
commit 9e950417ce

View File

@ -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);