| 279 | } |
| 280 | |
| 281 | static int |
| 282 | codec_detach(device_t dev) |
| 283 | { |
| 284 | struct codec_softc *sc; |
| 285 | |
| 286 | sc = device_get_softc(dev); |
| 287 | |
| 288 | bus_release_resources(dev, codec_spec, sc->res); |
| 289 | |
| 290 | return (0); |
| 291 | } |
| 292 | |
| 293 | static device_method_t codec_methods[] = { |
| 294 | /* Device interface */ |
nothing calls this directly
no test coverage detected