File `rzv2h-cpg.h` makes use of data types defined in `types.h`, but it's not including it, which could translate to build errors. Include `types.h` to fix this problem. Signed-off-by: Fabrizio Castro <fabrizio.castro.jz@xxxxxxxxxxx> --- drivers/clk/renesas/rzv2h-cpg.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/renesas/rzv2h-cpg.h b/drivers/clk/renesas/rzv2h-cpg.h index 7321b085f937..25e0a9e5761b 100644 --- a/drivers/clk/renesas/rzv2h-cpg.h +++ b/drivers/clk/renesas/rzv2h-cpg.h @@ -9,6 +9,7 @@ #define __RENESAS_RZV2H_CPG_H__ #include <linux/bitfield.h> +#include <linux/types.h> /** * struct pll - Structure for PLL configuration -- 2.34.1