aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBiju Das <[email protected]>2023-11-22 14:23:07 +0000
committerStephen Boyd <[email protected]>2023-12-17 15:56:14 -0800
commit1e8ce92afdbf2dafa345a9b1d91fb14a1487dc7f (patch)
tree4ec8f570e7edbfb2cc8ee4e84598337a56f96cc4
parenteb16ddb838dd8602961b5fc17d1350cd41ae69e0 (diff)
clk: versaclock3: Avoid unnecessary padding
Move long/pointer variables at the beginning of struct to avoid unnecessary padding. Signed-off-by: Biju Das <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Stephen Boyd <[email protected]>
-rw-r--r--drivers/clk/clk-versaclock3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/clk/clk-versaclock3.c b/drivers/clk/clk-versaclock3.c
index 3aad69a08512..058efffd4e01 100644
--- a/drivers/clk/clk-versaclock3.c
+++ b/drivers/clk/clk-versaclock3.c
@@ -148,16 +148,16 @@ struct vc3_pfd_data {
};
struct vc3_pll_data {
+ unsigned long vco_min;
+ unsigned long vco_max;
u8 num;
u8 int_div_msb_offs;
u8 int_div_lsb_offs;
- unsigned long vco_min;
- unsigned long vco_max;
};
struct vc3_div_data {
- u8 offs;
const struct clk_div_table *table;
+ u8 offs;
u8 shift;
u8 width;
u8 flags;