aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk/sunxi-ng/ccu_mult.h
diff options
context:
space:
mode:
authorMaxime Ripard <maxime.ripard@free-electrons.com>2016-09-30 10:05:32 +0200
committerMaxime Ripard <maxime.ripard@free-electrons.com>2016-10-20 19:24:20 +0200
commita501a14e38cc4d8e9c91bb508cdca7032d53f717 (patch)
treeb5319acf66278661adf6cd8e512857ad25776a25 /drivers/clk/sunxi-ng/ccu_mult.h
parentclk: sunxi: mod0: improve function-level documentation (diff)
downloadlinux-dev-a501a14e38cc4d8e9c91bb508cdca7032d53f717.tar.xz
linux-dev-a501a14e38cc4d8e9c91bb508cdca7032d53f717.zip
clk: sunxi-ng: Rename the internal structures
Rename the structures meant to be embedded in other structures to make it consistent with the mux structure name Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com> Acked-by: Chen-Yu Tsai <wens@csie.org>
Diffstat (limited to 'drivers/clk/sunxi-ng/ccu_mult.h')
-rw-r--r--drivers/clk/sunxi-ng/ccu_mult.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/sunxi-ng/ccu_mult.h b/drivers/clk/sunxi-ng/ccu_mult.h
index 5d2c8dc14073..113780b7558e 100644
--- a/drivers/clk/sunxi-ng/ccu_mult.h
+++ b/drivers/clk/sunxi-ng/ccu_mult.h
@@ -4,7 +4,7 @@
#include "ccu_common.h"
#include "ccu_mux.h"
-struct _ccu_mult {
+struct ccu_mult_internal {
u8 shift;
u8 width;
};
@@ -18,7 +18,7 @@ struct _ccu_mult {
struct ccu_mult {
u32 enable;
- struct _ccu_mult mult;
+ struct ccu_mult_internal mult;
struct ccu_mux_internal mux;
struct ccu_common common;
};