bcma: cleanup comments
authorTom Rix <trix@redhat.com>
Sun, 13 Feb 2022 21:31:21 +0000 (13:31 -0800)
committerKalle Valo <kvalo@kernel.org>
Mon, 21 Feb 2022 08:58:14 +0000 (10:58 +0200)
Remove the second 'info'.
Replacements
'adventages' with 'advantages'
'strenth' with 'strength'
'atleast' with 'at least'
'thr'u'' with 'through'
'capabilty' with 'capability'
'controll' with 'control'
'ourself' with 'ourselves'
'noone' with 'no one'
'cores' to 'core's' and 'core'

Signed-off-by: Tom Rix <trix@redhat.com>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20220213213121.2806376-1-trix@redhat.com
drivers/bcma/driver_chipcommon.c
drivers/bcma/driver_chipcommon_pmu.c
drivers/bcma/driver_pci_host.c
drivers/bcma/main.c
drivers/bcma/sprom.c

index 62f5bfa5065d919ee3acd9e596373923070e574a..fd91a39f02c739a264f16219266e254b64e7e448 100644 (file)
@@ -303,7 +303,7 @@ u32 bcma_chipco_gpio_outen(struct bcma_drv_cc *cc, u32 mask, u32 value)
 EXPORT_SYMBOL_GPL(bcma_chipco_gpio_outen);
 
 /*
- * If the bit is set to 0, chipcommon controlls this GPIO,
+ * If the bit is set to 0, chipcommon controls this GPIO,
  * if the bit is set to 1, it is used by some part of the chip and not our code.
  */
 u32 bcma_chipco_gpio_control(struct bcma_drv_cc *cc, u32 mask, u32 value)
index 3056f81efca453d600963d70912aa267bc6125a6..263ef6fa1d0f7d974b846b50c2dd9785e77857f0 100644 (file)
@@ -206,7 +206,7 @@ static void bcma_pmu_resources_init(struct bcma_drv_cc *cc)
        usleep_range(2000, 2500);
 }
 
-/* Disable to allow reading SPROM. Don't know the adventages of enabling it. */
+/* Disable to allow reading SPROM. Don't know the advantages of enabling it. */
 void bcma_chipco_bcm4331_ext_pa_lines_ctl(struct bcma_drv_cc *cc, bool enable)
 {
        struct bcma_bus *bus = cc->core->bus;
@@ -234,7 +234,7 @@ static void bcma_pmu_workarounds(struct bcma_drv_cc *cc)
        switch (bus->chipinfo.id) {
        case BCMA_CHIP_ID_BCM4313:
                /*
-                * enable 12 mA drive strenth for 4313 and set chipControl
+                * enable 12 mA drive strength for 4313 and set chipControl
                 * register bit 1
                 */
                bcma_chipco_chipctl_maskset(cc, 0,
@@ -249,7 +249,7 @@ static void bcma_pmu_workarounds(struct bcma_drv_cc *cc)
        case BCMA_CHIP_ID_BCM43224:
        case BCMA_CHIP_ID_BCM43421:
                /*
-                * enable 12 mA drive strenth for 43224 and set chipControl
+                * enable 12 mA drive strength for 43224 and set chipControl
                 * register bit 15
                 */
                if (bus->chipinfo.rev == 0) {
index 6f8fc5f587fe151f88743a2bc808a6268ca012e3..aa0581cda71855cdc1321a10b6dc353616e9cab1 100644 (file)
@@ -61,7 +61,7 @@ static u32 bcma_get_cfgspace_addr(struct bcma_drv_pci *pc, unsigned int dev,
 {
        u32 addr = 0;
 
-       /* Issue config commands only when the data link is up (atleast
+       /* Issue config commands only when the data link is up (at least
         * one external pcie device is present).
         */
        if (dev >= 2 || !(bcma_pcie_read(pc, BCMA_CORE_PCI_DLLP_LSREG)
@@ -295,7 +295,7 @@ static u8 bcma_find_pci_capability(struct bcma_drv_pci *pc, unsigned int dev,
        if (cap_ptr == 0x00)
                return cap_ptr;
 
-       /* loop thr'u the capability list and see if the requested capabilty
+       /* loop through the capability list and see if the requested capability
         * exists */
        bcma_extpci_read_config(pc, dev, func, cap_ptr, &cap_id, sizeof(u8));
        while (cap_id != req_cap_id) {
@@ -317,7 +317,7 @@ static u8 bcma_find_pci_capability(struct bcma_drv_pci *pc, unsigned int dev,
 
                *buflen = 0;
 
-               /* copy the cpability data excluding cap ID and next ptr */
+               /* copy the capability data excluding cap ID and next ptr */
                cap_data = cap_ptr + 2;
                if ((bufsize + cap_data)  > PCI_CONFIG_SPACE_SIZE)
                        bufsize = PCI_CONFIG_SPACE_SIZE - cap_data;
index 8e7ca3e4c8c49d661a3d7f26b99f89ed4d8845c4..44392b624b200c01b69a84d1ea4f3e5b0e686ab6 100644 (file)
@@ -293,7 +293,7 @@ static int bcma_register_devices(struct bcma_bus *bus)
        int err;
 
        list_for_each_entry(core, &bus->cores, list) {
-               /* We support that cores ourself */
+               /* We support that core ourselves */
                switch (core->id.id) {
                case BCMA_CORE_4706_CHIPCOMMON:
                case BCMA_CORE_CHIPCOMMON:
@@ -369,7 +369,7 @@ void bcma_unregister_cores(struct bcma_bus *bus)
        if (bus->hosttype == BCMA_HOSTTYPE_SOC)
                platform_device_unregister(bus->drv_cc.watchdog);
 
-       /* Now noone uses internally-handled cores, we can free them */
+       /* Now no one uses internally-handled cores, we can free them */
        list_for_each_entry_safe(core, tmp, &bus->cores, list) {
                list_del(&core->list);
                put_device(&core->dev);
index bd2c923a658670a185f7b55caa56c711faaba578..3da01f173c63745a2fab261b5e1d6a08fb01fd3a 100644 (file)
@@ -28,7 +28,7 @@ static int(*get_fallback_sprom)(struct bcma_bus *dev, struct ssb_sprom *out);
  * callback handler which fills the SPROM data structure. The fallback is
  * used for PCI based BCMA devices, where no valid SPROM can be found
  * in the shadow registers and to provide the SPROM for SoCs where BCMA is
- * to controll the system bus.
+ * to control the system bus.
  *
  * This function is useful for weird architectures that have a half-assed
  * BCMA device hardwired to their PCI bus.
@@ -281,7 +281,7 @@ static void bcma_sprom_extract_r8(struct bcma_bus *bus, const u16 *sprom)
        SPEX(alpha2[0], SSB_SPROM8_CCODE, 0xff00, 8);
        SPEX(alpha2[1], SSB_SPROM8_CCODE, 0x00ff, 0);
 
-       /* Extract cores power info info */
+       /* Extract core's power info */
        for (i = 0; i < ARRAY_SIZE(pwr_info_offset); i++) {
                o = pwr_info_offset[i];
                SPEX(core_pwr_info[i].itssi_2g, o + SSB_SROM8_2G_MAXP_ITSSI,