diff options
author | Stephen Boyd <sboyd@kernel.org> | 2022-11-22 16:43:18 -0800 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2022-11-22 16:43:18 -0800 |
commit | 4e85952f2678b458315e926a9b1f6d5bbf921b7c (patch) | |
tree | f28cfe336574563f0a567ae5333058e4f8852293 /drivers/clk | |
parent | 0d51d0db9f92fcf56bee6d500a1cde8fafb5b411 (diff) | |
parent | 57976762428675f259339385d3324d28ee53ec02 (diff) | |
download | linux-4e85952f2678b458315e926a9b1f6d5bbf921b7c.tar.gz |
Merge tag 'clk-microchip-fixes-6.1' of https://git.kernel.org/pub/scm/linux/kernel/git/at91/linux into clk-fixes
Pull Microchip clk driver fixes from Claudiu Beznea:
- fix the clock ID for USB device port on AT91 RM9200 SoCs; along with it the
device tree references to this clocks were fixed in this patch to ease the
backporting and to avoid USB driver probe failure.
* tag 'clk-microchip-fixes-6.1' of https://git.kernel.org/pub/scm/linux/kernel/git/at91/linux:
ARM: at91: rm9200: fix usb device clock id
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/at91/at91rm9200.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/at91/at91rm9200.c b/drivers/clk/at91/at91rm9200.c index b174f727a8ef..16870943a13e 100644 --- a/drivers/clk/at91/at91rm9200.c +++ b/drivers/clk/at91/at91rm9200.c @@ -40,7 +40,7 @@ static const struct clk_pll_characteristics rm9200_pll_characteristics = { }; static const struct sck at91rm9200_systemck[] = { - { .n = "udpck", .p = "usbck", .id = 2 }, + { .n = "udpck", .p = "usbck", .id = 1 }, { .n = "uhpck", .p = "usbck", .id = 4 }, { .n = "pck0", .p = "prog0", .id = 8 }, { .n = "pck1", .p = "prog1", .id = 9 }, |