[PATCH 01/11] arch/arm/mach-bcm283x/msg.c: Fix spelling of "Failed".

--- arch/arm/mach-bcm283x/msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-bcm283x/msg.c b/arch/arm/mach-bcm283x/msg.c index 01a8ed2a7b..fe243e2dca 100644 --- a/arch/arm/mach-bcm283x/msg.c +++ b/arch/arm/mach-bcm283x/msg.c @@ -194,7 +194,7 @@ int bcm2711_notify_vl805_reset(void) ret = bcm2835_mbox_call_prop(BCM2835_MBOX_PROP_CHAN, &msg_notify_vl805_reset->hdr); if (ret) { - printf("bcm2711: Faild to load vl805's firmware, %d\n", ret); + printf("bcm2711: Failed to load vl805's firmware, %d\n", ret); return -EIO; }

--- drivers/mtd/ubispl/ubispl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/ubispl/ubispl.c b/drivers/mtd/ubispl/ubispl.c index 03b31f002b..b58d8e8d56 100644 --- a/drivers/mtd/ubispl/ubispl.c +++ b/drivers/mtd/ubispl/ubispl.c @@ -953,7 +953,7 @@ retry: * Check, if the total number of blocks is correct */ if (be32_to_cpu(vh->used_ebs) != last) { - ubi_dbg("Block count missmatch."); + ubi_dbg("Block count mismatch."); ubi_dbg("vh->used_ebs: %d nrblocks: %d", be32_to_cpu(vh->used_ebs), last); generic_set_bit(pnum, ubi->corrupt);

On Tue, Dec 21, 2021 at 01:06:53PM -0800, Vagrant Cascadian wrote:
Applied to u-boot/master, thanks!

--- drivers/usb/musb/musb_udc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/musb/musb_udc.c b/drivers/usb/musb/musb_udc.c index b9510e3045..2ffcb7caaa 100644 --- a/drivers/usb/musb/musb_udc.c +++ b/drivers/usb/musb/musb_udc.c @@ -269,7 +269,7 @@ static void musb_peri_ep0_set_address(void) __PRETTY_FUNCTION__, udc_device->address); } else { if (debug_level > 0) - serial_printf("ERROR : %s Address missmatch " + serial_printf("ERROR : %s Address mismatch " "sw %d vs hw %d\n", __PRETTY_FUNCTION__, udc_device->address, faddr);

On Tue, Dec 21, 2021 at 01:06:54PM -0800, Vagrant Cascadian wrote:
Applied to u-boot/master, thanks!

--- arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch2_serdes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch2_serdes.c b/arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch2_serdes.c index 41c89b8904..60769e139e 100644 --- a/arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch2_serdes.c +++ b/arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch2_serdes.c @@ -249,7 +249,7 @@ int setup_serdes_volt(u32 svdd)
/* * If SVDD set failed, will not return directly, so that the - * serdes lanes can complete reseting. + * serdes lanes can complete resetting. */ ret = set_serdes_volt(svdd_tar); if (ret)

On Tue, Dec 21, 2021 at 01:06:55PM -0800, Vagrant Cascadian wrote:
Applied to u-boot/master, thanks!

--- cmd/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/Kconfig b/cmd/Kconfig index 5b30b13e43..bb11aec9b7 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1012,7 +1012,7 @@ config CMD_IDE select IDE help Provides an 'ide' command which allows accessing the IDE drive, - reseting the IDE interface, printing the partition table and + resetting the IDE interface, printing the partition table and geting device info. It also enables the 'diskboot' command which permits booting from an IDE drive.

On Tue, Dec 21, 2021 at 01:06:56PM -0800, Vagrant Cascadian wrote:
Applied to u-boot/master, thanks!

--- drivers/net/fec_mxc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 40a86a3e12..811bc275c1 100644 --- a/drivers/net/fec_mxc.c +++ b/drivers/net/fec_mxc.c @@ -1465,7 +1465,7 @@ static int fecmxc_probe(struct udevice *dev) start = get_timer(0); while (readl(&priv->eth->ecntrl) & FEC_ECNTRL_RESET) { if (get_timer(start) > (CONFIG_SYS_HZ * 5)) { - printf("FEC MXC: Timeout reseting chip\n"); + printf("FEC MXC: Timeout resetting chip\n"); goto err_timeout; } udelay(10);

On Tue, Dec 21, 2021 at 11:08 PM Vagrant Cascadian vagrant@debian.org wrote:
drivers/net/fec_mxc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/fec_mxc.c b/drivers/net/fec_mxc.c index 40a86a3e12..811bc275c1 100644 --- a/drivers/net/fec_mxc.c +++ b/drivers/net/fec_mxc.c @@ -1465,7 +1465,7 @@ static int fecmxc_probe(struct udevice *dev) start = get_timer(0); while (readl(&priv->eth->ecntrl) & FEC_ECNTRL_RESET) { if (get_timer(start) > (CONFIG_SYS_HZ * 5)) {
printf("FEC MXC: Timeout reseting chip\n");
printf("FEC MXC: Timeout resetting chip\n"); goto err_timeout; } udelay(10);
-- 2.30.2
Reviewed-by: Ramon Fried rfried.dev@gmail.com

On Tue, Dec 21, 2021 at 01:06:57PM -0800, Vagrant Cascadian wrote:
Applied to u-boot/master, thanks!

--- common/fdt_support.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/fdt_support.c b/common/fdt_support.c index 8992ac5d3f..a7dbe0efdf 100644 --- a/common/fdt_support.c +++ b/common/fdt_support.c @@ -1407,7 +1407,7 @@ int fdt_get_dma_range(const void *blob, int node, phys_addr_t *cpu, node = parent; parent = fdt_parent_offset(blob, node); if (parent < 0) { - printf("Found dma-ranges in root node, shoudln't happen\n"); + printf("Found dma-ranges in root node, shouldn't happen\n"); ret = -EINVAL; goto out; }

On Tue, Dec 21, 2021 at 01:06:58PM -0800, Vagrant Cascadian wrote:
Applied to u-boot/master, thanks!

--- drivers/core/of_addr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/core/of_addr.c b/drivers/core/of_addr.c index 3fbc0a7afa..431dd4e565 100644 --- a/drivers/core/of_addr.c +++ b/drivers/core/of_addr.c @@ -367,7 +367,7 @@ int of_get_dma_range(const struct device_node *dev, phys_addr_t *cpu, /* switch to that node */ parent = of_get_parent(dev); if (!parent) { - printf("Found dma-ranges in root node, shoudln't happen\n"); + printf("Found dma-ranges in root node, shouldn't happen\n"); ret = -EINVAL; goto out; }

On Tue, Dec 21, 2021 at 01:06:59PM -0800, Vagrant Cascadian wrote:
Applied to u-boot/master, thanks!

--- arch/arm/mach-keystone/ddr3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/arm/mach-keystone/ddr3.c b/arch/arm/mach-keystone/ddr3.c index 9ee3284156..53117c2695 100644 --- a/arch/arm/mach-keystone/ddr3.c +++ b/arch/arm/mach-keystone/ddr3.c @@ -344,7 +344,7 @@ void ddr3_check_ecc_int(u32 base) puts("DDR3 ECC 2-bit error interrupted\n");
if (!ecc_test) { - puts("Reseting the device ...\n"); + puts("Resetting the device ...\n"); reset_cpu(); } }

On Tue, Dec 21, 2021 at 01:07:00PM -0800, Vagrant Cascadian wrote:
Applied to u-boot/master, thanks!

--- drivers/ddr/altera/sequencer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/ddr/altera/sequencer.c b/drivers/ddr/altera/sequencer.c index 8a016f0628..e402f2929a 100644 --- a/drivers/ddr/altera/sequencer.c +++ b/drivers/ddr/altera/sequencer.c @@ -2770,7 +2770,7 @@ rw_mgr_mem_calibrate_dqs_enable_calibration(struct socfpga_sdrseq *seq, ret = rw_mgr_mem_calibrate_vfifo_find_dqs_en_phase(seq, rw_group);
debug_cond(DLEVEL >= 1, - "%s:%d: g=%u found=%u; Reseting delay chain to zero\n", + "%s:%d: g=%u found=%u; Resetting delay chain to zero\n", __func__, __LINE__, rw_group, !ret);
for (r = 0; r < seq->rwcfg->mem_number_of_ranks;

On Tue, Dec 21, 2021 at 01:07:01PM -0800, Vagrant Cascadian wrote:
Applied to u-boot/master, thanks!

--- drivers/usb/gadget/dwc2_udc_otg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/gadget/dwc2_udc_otg.c b/drivers/usb/gadget/dwc2_udc_otg.c index 2f31814442..b30604eba0 100644 --- a/drivers/usb/gadget/dwc2_udc_otg.c +++ b/drivers/usb/gadget/dwc2_udc_otg.c @@ -461,7 +461,7 @@ static void reconfig_usbd(struct dwc2_udc *dev) u32 max_hw_ep; int pdata_hw_ep;
- debug("Reseting OTG controller\n"); + debug("Resetting OTG controller\n");
dflt_gusbcfg = 0<<15 /* PHY Low Power Clock sel*/

On Tue, Dec 21, 2021 at 01:07:02PM -0800, Vagrant Cascadian wrote:
Applied to u-boot/master, thanks!

On Tue, Dec 21, 2021 at 01:06:52PM -0800, Vagrant Cascadian wrote:
Applied to u-boot/master, thanks!
participants (3)
-
Ramon Fried
-
Tom Rini
-
Vagrant Cascadian