Re: [PATCH v5 2/5] driver core: Functional dependencies tracking support

From: Greg Kroah-Hartman
Date: Thu Oct 27 2016 - 11:34:12 EST


On Mon, Oct 10, 2016 at 02:51:04PM +0200, Rafael J. Wysocki wrote:
> +/*
> + * Device link flags.
> + *
> + * STATELESS: The core won't track the presence of supplier/consumer drivers.
> + * AUTOREMOVE: Remove this link automatically on consumer driver unbind.
> + */
> +#define DL_FLAG_STATELESS (1 << 0)
> +#define DL_FLAG_AUTOREMOVE (1 << 1)

Minor nit, BIT()? I'll leave this for someone to send a checkpatch
cleanup patch later on :)

thanks,

greg k-h