Remove unnecessary break statements.

Submitted by:	   John Wehle
This commit is contained in:
Ganbold Tsagaankhuu 2015-05-21 07:09:01 +00:00
parent 37da2ff61a
commit e39d48908b
3 changed files with 0 additions and 3 deletions

View File

@ -185,7 +185,6 @@ aml8726_ccm_attach(device_t dev)
device_printf(dev, "unsupported SoC\n");
return (ENXIO);
/* NOTREACHED */
break;
}
if (bus_alloc_resources(dev, aml8726_ccm_spec, sc->res)) {

View File

@ -146,7 +146,6 @@ aml8726_pinctrl_attach(device_t dev)
device_printf(dev, "unsupported SoC\n");
return (ENXIO);
/* NOTREACHED */
break;
}
if (bus_alloc_resources(dev, aml8726_pinctrl_spec, sc->res)) {

View File

@ -758,7 +758,6 @@ aml8726_sdxc_attach(device_t dev)
device_printf(dev, "unsupported SoC\n");
return (ENXIO);
/* NOTREACHED */
break;
}
node = ofw_bus_get_node(dev);