mirror of
https://github.com/u-boot/u-boot.git
synced 2024-11-24 12:44:23 +08:00
cosmetic: Fix typos "privide"
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
parent
5b66006646
commit
6797630685
@ -27,7 +27,7 @@ void uniphier_ld4_clk_init(void)
|
||||
writel(tmp, SC_RSTCTRL);
|
||||
readl(SC_RSTCTRL); /* dummy read */
|
||||
|
||||
/* privide clocks */
|
||||
/* provide clocks */
|
||||
tmp = readl(SC_CLKCTRL);
|
||||
#ifdef CONFIG_UNIPHIER_ETH
|
||||
tmp |= SC_CLKCTRL_CEN_ETHER;
|
||||
|
@ -38,7 +38,7 @@ void uniphier_pro4_clk_init(void)
|
||||
readl(SC_RSTCTRL2); /* dummy read */
|
||||
#endif
|
||||
|
||||
/* privide clocks */
|
||||
/* provide clocks */
|
||||
tmp = readl(SC_CLKCTRL);
|
||||
#ifdef CONFIG_USB_XHCI_UNIPHIER
|
||||
tmp |= SC_CLKCTRL_CEN_USB31 | SC_CLKCTRL_CEN_USB30 |
|
||||
|
@ -31,7 +31,7 @@ void uniphier_pro5_clk_init(void)
|
||||
readl(SC_RSTCTRL2); /* dummy read */
|
||||
#endif
|
||||
|
||||
/* privide clocks */
|
||||
/* provide clocks */
|
||||
tmp = readl(SC_CLKCTRL);
|
||||
#ifdef CONFIG_USB_XHCI_UNIPHIER
|
||||
tmp |= SC_CLKCTRL_CEN_USB31 | SC_CLKCTRL_CEN_USB30 |
|
||||
|
@ -34,7 +34,7 @@ void uniphier_pxs2_clk_init(void)
|
||||
readl(SC_RSTCTRL2); /* dummy read */
|
||||
#endif
|
||||
|
||||
/* privide clocks */
|
||||
/* provide clocks */
|
||||
tmp = readl(SC_CLKCTRL);
|
||||
#ifdef CONFIG_USB_XHCI_UNIPHIER
|
||||
tmp |= SC_CLKCTRL_CEN_USB31 | SC_CLKCTRL_CEN_USB30 |
|
||||
|
@ -24,7 +24,7 @@ int uniphier_ld4_early_clk_init(const struct uniphier_board_data *bd)
|
||||
writel(tmp, SC_RSTCTRL);
|
||||
readl(SC_RSTCTRL); /* dummy read */
|
||||
|
||||
/* privide clocks */
|
||||
/* provide clocks */
|
||||
tmp = readl(SC_CLKCTRL);
|
||||
tmp |= SC_CLKCTRL_CEN_UMC | SC_CLKCTRL_CEN_SBC | SC_CLKCTRL_CEN_PERI;
|
||||
writel(tmp, SC_CLKCTRL);
|
||||
|
@ -26,7 +26,7 @@ int uniphier_pro5_early_clk_init(const struct uniphier_board_data *bd)
|
||||
writel(tmp, SC_RSTCTRL4);
|
||||
readl(SC_RSTCTRL); /* dummy read */
|
||||
|
||||
/* privide clocks */
|
||||
/* provide clocks */
|
||||
tmp = readl(SC_CLKCTRL);
|
||||
tmp |= SC_CLKCTRL_CEN_SBC | SC_CLKCTRL_CEN_PERI;
|
||||
writel(tmp, SC_CLKCTRL);
|
||||
|
@ -30,7 +30,7 @@ int uniphier_pxs2_early_clk_init(const struct uniphier_board_data *bd)
|
||||
writel(tmp, SC_RSTCTRL4);
|
||||
readl(SC_RSTCTRL4); /* dummy read */
|
||||
|
||||
/* privide clocks */
|
||||
/* provide clocks */
|
||||
tmp = readl(SC_CLKCTRL);
|
||||
tmp |= SC_CLKCTRL_CEN_SBC | SC_CLKCTRL_CEN_PERI;
|
||||
writel(tmp, SC_CLKCTRL);
|
||||
|
@ -16,7 +16,7 @@ config USE_PRIVATE_LIBGCC
|
||||
depends on HAVE_PRIVATE_LIBGCC
|
||||
help
|
||||
This option allows you to use the built-in libgcc implementation
|
||||
of U-Boot instead of the one privided by the compiler.
|
||||
of U-Boot instead of the one provided by the compiler.
|
||||
If unsure, say N.
|
||||
|
||||
config SYS_HZ
|
||||
|
Loading…
Reference in New Issue
Block a user