Hello,

On Tue, Dec 05, 2023 at 06:45:33PM +0900, Yoshinori Sato wrote:
> @@ -675,13 +681,17 @@ struct clk_div_table {
>   * CLK_DIVIDER_BIG_ENDIAN - By default little endian register accesses are 
> used
>   *   for the divider register.  Setting this flag makes the register accesses
>   *   big endian.
> + * CLK_DIVIDER_REG_8BIT - by default 32bit register accesses are used for
> + *   the gate register.  Setting this flag makes the register accesses 8bit.
> + * CLK_DIVIDER_REG_16BIT - by default 32bit register accesses are used for
> + *   the gate register.  Setting this flag makes the register accesses 16bit.
>   */
>  struct clk_divider {
>       struct clk_hw   hw;
>       void __iomem    *reg;
>       u8              shift;
>       u8              width;
> -     u8              flags;
> +     u32             flags;
>       const struct clk_div_table      *table;
>       spinlock_t      *lock;
>  };

I wonder why .flags was made bigger here. The two new flag values would
still fit into the u8, right?

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | https://www.pengutronix.de/ |

Attachment: signature.asc
Description: PGP signature

Reply via email to