Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a7fa8c9d authored by Heiner Kallweit's avatar Heiner Kallweit Committed by Greg Kroah-Hartman
Browse files

pwm: meson: Fix g12a ao clk81 name



commit 9e4fa80ab7ef9eb4f7b1ea9fc31e0eb040e85e25 upstream.

Fix the name of the aoclk81 clock. Apparently name aoclk81 as used by
the vendor driver was changed when mainlining the g12a clock driver.

Fixes: f41efceb ("pwm: meson: Add clock source configuration for Meson G12A")
Cc: stable@vger.kernel.org
Signed-off-by: default avatarHeiner Kallweit <hkallweit1@gmail.com>
Reviewed-by: default avatarMartin Blumenstingl <martin.blumenstingl@googlemail.com>
Signed-off-by: default avatarThierry Reding <thierry.reding@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a3e0d343
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -433,7 +433,7 @@ static const struct meson_pwm_data pwm_axg_ao_data = {
};
};


static const char * const pwm_g12a_ao_ab_parent_names[] = {
static const char * const pwm_g12a_ao_ab_parent_names[] = {
	"xtal", "aoclk81", "fclk_div4", "fclk_div5"
	"xtal", "g12a_ao_clk81", "fclk_div4", "fclk_div5"
};
};


static const struct meson_pwm_data pwm_g12a_ao_ab_data = {
static const struct meson_pwm_data pwm_g12a_ao_ab_data = {
@@ -442,7 +442,7 @@ static const struct meson_pwm_data pwm_g12a_ao_ab_data = {
};
};


static const char * const pwm_g12a_ao_cd_parent_names[] = {
static const char * const pwm_g12a_ao_cd_parent_names[] = {
	"xtal", "aoclk81",
	"xtal", "g12a_ao_clk81",
};
};


static const struct meson_pwm_data pwm_g12a_ao_cd_data = {
static const struct meson_pwm_data pwm_g12a_ao_cd_data = {