Skip to content

Commit 897a3e3

Browse files
claudiubezneageertu
authored andcommitted
clk: renesas: rzg2l: Use u32 for flag and mux_flags
flag and mux_flags are intended to keep bit masks. Use u32 type for it. Signed-off-by: Claudiu Beznea <[email protected]> Reviewed-by: Geert Uytterhoeven <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Geert Uytterhoeven <[email protected]>
1 parent 72977f0 commit 897a3e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/clk/renesas/rzg2l-cpg.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ struct cpg_core_clk {
9292
unsigned int conf;
9393
const struct clk_div_table *dtable;
9494
const char * const *parent_names;
95-
int flag;
96-
int mux_flags;
95+
u32 flag;
96+
u32 mux_flags;
9797
int num_parents;
9898
};
9999

0 commit comments

Comments
 (0)