On Fri, 2017-08-11 at 16:23 +0200, Hannes Reinecke wrote: > +typedef __u32 __bitwise sdev_bflags_t; > + > +/* Only scan LUN 0 */ > +#define BLIST_NOLUN ((__force sdev_bflags_t)(1 << 0)) Hello Hannes, Is the new typedef used anywhere outside the BLIST flag definitions? If not, how about skipping the introduction of a typedef and using u32 __bitwise directly? Thanks, Bart.