On Thu, Feb 8, 2024 at 2:10 AM Yoann Congal <yoann.congal@xxxxxxxx> wrote: > > CONFIG_BASE_SMALL is currently a type int but is only used as a boolean. > > So, change its type to bool and adapt all usages: > CONFIG_BASE_SMALL == 0 becomes !IS_ENABLED(CONFIG_BASE_SMALL) and > CONFIG_BASE_SMALL != 0 becomes IS_ENABLED(CONFIG_BASE_SMALL). > > Signed-off-by: Yoann Congal <yoann.congal@xxxxxxxx> > --- > NB: This is preliminary work for the following patch removing > CONFIG_BASE_FULL (now equivalent to !CONFIG_BASE_SMALL) This is almost the same as v4, which had these tags: Reviewed-by: Petr Mladek <pmladek@xxxxxxxx> Reviewed-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Reviewed-by: Masahiro Yamada <masahiroy@xxxxxxxxxx> -- Best Regards Masahiro Yamada