Deleted Added
full compact
29c29
< * $FreeBSD: head/sys/dev/bhnd/bhnd.h 300250 2016-05-20 00:45:16Z adrian $
---
> * $FreeBSD: head/sys/dev/bhnd/bhnd.h 300445 2016-05-23 03:47:44Z adrian $
563a564,578
> * Return the BHND attachment type of the parent bhnd bus.
> *
> * @param dev A bhnd bus child device.
> *
> * @retval BHND_ATTACH_ADAPTER if the bus is resident on a bridged adapter,
> * such as a WiFi chipset.
> * @retval BHND_ATTACH_NATIVE if the bus provides hardware services (clock,
> * CPU, etc) to a directly attached native host.
> */
> static inline bhnd_attach_type
> bhnd_get_attach_type (device_t dev) {
> return (BHND_BUS_GET_ATTACH_TYPE(device_get_parent(dev), dev));
> }
>
> /**