From: Geert Uytterhoeven Date: Fri, 25 Jan 2019 10:56:05 +0000 (+0100) Subject: pinctrl: sh-pfc: Validate fixed-size field widths at build time X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=5e8588c86d71e78de9e97103324d9127063f18d0;p=linux.git pinctrl: sh-pfc: Validate fixed-size field widths at build time Add a build-time check, to ensure the register and field widths in descriptors for config registers with fixed-width fields are sane. This helps catching bugs early. Signed-off-by: Geert Uytterhoeven Reviewed-by: Simon Horman --- diff --git a/drivers/pinctrl/sh-pfc/sh_pfc.h b/drivers/pinctrl/sh-pfc/sh_pfc.h index 46d477ff51092..56016cb76769c 100644 --- a/drivers/pinctrl/sh-pfc/sh_pfc.h +++ b/drivers/pinctrl/sh-pfc/sh_pfc.h @@ -126,7 +126,8 @@ struct pinmux_cfg_reg { * one for each possible combination of the register field bit values. */ #define PINMUX_CFG_REG(name, r, r_width, f_width) \ - .reg = r, .reg_width = r_width, .field_width = f_width, \ + .reg = r, .reg_width = r_width, \ + .field_width = f_width + BUILD_BUG_ON_ZERO(r_width % f_width), \ .enum_ids = (const u16 [(r_width / f_width) * (1 << f_width)]) /*