]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
treewide: Fix typo in printk messages
authorMasanari Iida <standby24x7@gmail.com>
Fri, 27 Feb 2015 14:52:31 +0000 (23:52 +0900)
committerJiri Kosina <jkosina@suse.cz>
Fri, 6 Mar 2015 22:05:39 +0000 (23:05 +0100)
This patch fix spelling typo in printk messages.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
21 files changed:
arch/arc/kernel/unwind.c
arch/powerpc/kernel/prom.c
arch/powerpc/platforms/85xx/p1022_rdk.c
arch/x86/kernel/test_rodata.c
drivers/iio/adc/max1027.c
drivers/isdn/hardware/mISDN/mISDNinfineon.c
drivers/isdn/mISDN/dsp_cmx.c
drivers/isdn/mISDN/dsp_core.c
drivers/media/tuners/msi001.c
drivers/net/ethernet/broadcom/bnx2x/bnx2x_sriov.c
drivers/net/ethernet/qlogic/qlcnic/qlcnic_hw.c
drivers/net/wireless/ath/ath10k/mac.c
drivers/net/wireless/rtlwifi/rtl8723be/dm.c
drivers/net/wireless/rtlwifi/rtl8821ae/dm.c
drivers/parisc/eisa_enumerator.c
drivers/scsi/be2iscsi/be_cmds.c
drivers/scsi/osd/osd_initiator.c
drivers/scsi/qla2xxx/qla_nx.c
drivers/scsi/qla2xxx/qla_os.c
net/sunrpc/xprtrdma/verbs.c
tools/perf/util/probe-finder.c

index e550b117ec4ffe4ccf3f79e4763fc511e5c9d7e9..93c6ea52b6719e4e238d6076fda6c3b981ac48fe 100644 (file)
@@ -841,7 +841,7 @@ static int processCFI(const u8 *start, const u8 *end, unsigned long targetLoc,
                                break;
                        case DW_CFA_GNU_window_save:
                        default:
-                               unw_debug("UNKNOW OPCODE 0x%x\n", opcode);
+                               unw_debug("UNKNOWN OPCODE 0x%x\n", opcode);
                                result = 0;
                                break;
                        }
index 099f27e6d1b07e148c0b2c25d8f377d1d4f23654..20ce051312fcef6a3d0de2dc0011da7a1865be35 100644 (file)
@@ -721,7 +721,7 @@ void __init early_init_devtree(void *params)
         */
        of_scan_flat_dt(early_init_dt_scan_cpus, NULL);
        if (boot_cpuid < 0) {
-               printk("Failed to indentify boot CPU !\n");
+               printk("Failed to identify boot CPU !\n");
                BUG();
        }
 
index 7a180f0308d55ad316a74c39083515fb92322326..680232d6ba481cf5fcfe445ac262a44387e3a4f6 100644 (file)
@@ -50,14 +50,14 @@ void p1022rdk_set_pixel_clock(unsigned int pixclock)
        /* Map the global utilities registers. */
        guts_np = of_find_compatible_node(NULL, NULL, "fsl,p1022-guts");
        if (!guts_np) {
-               pr_err("p1022rdk: missing global utilties device node\n");
+               pr_err("p1022rdk: missing global utilities device node\n");
                return;
        }
 
        guts = of_iomap(guts_np, 0);
        of_node_put(guts_np);
        if (!guts) {
-               pr_err("p1022rdk: could not map global utilties device\n");
+               pr_err("p1022rdk: could not map global utilities device\n");
                return;
        }
 
index b79133abda48d9c025eb1dad8ddf5a0b20ac1090..5ecbfe5099dad68e140b85ffdaefc75818afc6d9 100644 (file)
@@ -57,7 +57,7 @@ int rodata_test(void)
        /* test 3: check the value hasn't changed */
        /* If this test fails, we managed to overwrite the data */
        if (!rodata_test_data) {
-               printk(KERN_ERR "rodata_test: Test 3 failes (end data)\n");
+               printk(KERN_ERR "rodata_test: Test 3 fails (end data)\n");
                return -ENODEV;
        }
        /* test 4: check if the rodata section is 4Kb aligned */
index 87ee1c7d0b54241e07d997cd21babf68c46b7b35..44bf815adb6c0d4edd9162fca82b4aaa1dd95d81 100644 (file)
@@ -436,7 +436,7 @@ static int max1027_probe(struct spi_device *spi)
                                  indio_dev->num_channels * 2,
                                  GFP_KERNEL);
        if (st->buffer == NULL) {
-               dev_err(&indio_dev->dev, "Can't allocate bufffer\n");
+               dev_err(&indio_dev->dev, "Can't allocate buffer\n");
                return -ENOMEM;
        }
 
index c1493f4162fbca4b6c6343e19035758f13ddbc68..d5bdbaf93a1afe2d905a21ecad5cca09d637a731 100644 (file)
@@ -1092,7 +1092,7 @@ inf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
        }
        card->ci = get_card_info(ent->driver_data);
        if (!card->ci) {
-               pr_info("mISDN: do not have informations about adapter at %s\n",
+               pr_info("mISDN: do not have information about adapter at %s\n",
                        pci_name(pdev));
                kfree(card);
                pci_disable_device(pdev);
index 87f7dff20ff66b269537b166642690722fd4accc..52c43821f746e0223c1ad6047b73fa9492e711ef 100644 (file)
@@ -295,7 +295,7 @@ dsp_cmx_del_conf_member(struct dsp *dsp)
                }
        }
        printk(KERN_WARNING
-              "%s: dsp is not present in its own conf_meber list.\n",
+              "%s: dsp is not present in its own conf_member list.\n",
               __func__);
 
        return -EINVAL;
index 77025f5cb57df7edbee7b8d342bd1c67645665d6..0222b1a35a2dd3c1ba0d4b2199016134066fa5ca 100644 (file)
@@ -460,7 +460,7 @@ dsp_control_req(struct dsp *dsp, struct mISDNhead *hh, struct sk_buff *skb)
                }
                if (dsp_debug & DEBUG_DSP_CORE)
                        printk(KERN_DEBUG "%s: enable mixing of "
-                              "tx-data with conf mebers\n", __func__);
+                              "tx-data with conf members\n", __func__);
                dsp->tx_mix = 1;
                dsp_cmx_hardware(dsp->conf, dsp);
                dsp_rx_off(dsp);
@@ -474,7 +474,7 @@ dsp_control_req(struct dsp *dsp, struct mISDNhead *hh, struct sk_buff *skb)
                }
                if (dsp_debug & DEBUG_DSP_CORE)
                        printk(KERN_DEBUG "%s: disable mixing of "
-                              "tx-data with conf mebers\n", __func__);
+                              "tx-data with conf members\n", __func__);
                dsp->tx_mix = 0;
                dsp_cmx_hardware(dsp->conf, dsp);
                dsp_rx_off(dsp);
index 26019e73199314b779e788bfd6a57905c9c68457..74cfc3c98edbd3806d798c412ba8ac5df62a67d0 100644 (file)
@@ -408,7 +408,7 @@ static int msi001_s_ctrl(struct v4l2_ctrl *ctrl)
                                s->mixer_gain->cur.val, s->if_gain->val);
                break;
        default:
-               dev_dbg(&s->spi->dev, "unkown control %d\n", ctrl->id);
+               dev_dbg(&s->spi->dev, "unknown control %d\n", ctrl->id);
                ret = -EINVAL;
        }
 
index c88b20af87dff2e6613215520eeff5920b438b0f..bb2af7207826985523d067cb632cd225831a2e52 100644 (file)
@@ -591,7 +591,7 @@ int bnx2x_vf_mcast(struct bnx2x *bp, struct bnx2x_virtf *vf,
                mc = kzalloc(mc_num * sizeof(struct bnx2x_mcast_list_elem),
                             GFP_KERNEL);
                if (!mc) {
-                       BNX2X_ERR("Cannot Configure mulicasts due to lack of memory\n");
+                       BNX2X_ERR("Cannot Configure multicasts due to lack of memory\n");
                        return -ENOMEM;
                }
        }
index 69b46c051cc0c299feb3db576dca2056463f3ba5..a5a48294667962da691d3a60421828a2285413ca 100644 (file)
@@ -794,7 +794,7 @@ int qlcnic_82xx_config_intr_coalesce(struct qlcnic_adapter *adapter,
 
        if (rv)
                netdev_err(adapter->netdev,
-                          "Failed to set Rx coalescing parametrs\n");
+                          "Failed to set Rx coalescing parameters\n");
 
        return rv;
 }
index 46709301a51e1986bb4b505b659d7f94bbfca6d9..8698af91eacadef7682aadd3f5c75c068868cd05 100644 (file)
@@ -4342,7 +4342,7 @@ static void ath10k_sta_rc_update(struct ieee80211_hw *hw,
                        bw = WMI_PEER_CHWIDTH_80MHZ;
                        break;
                case IEEE80211_STA_RX_BW_160:
-                       ath10k_warn(ar, "Invalid bandwith %d in rc update for %pM\n",
+                       ath10k_warn(ar, "Invalid bandwidth %d in rc update for %pM\n",
                                    sta->bandwidth, sta->addr);
                        bw = WMI_PEER_CHWIDTH_20MHZ;
                        break;
index dd7eb4371f498910476b53635b98a9847c9ac1f6..13430b53f7cadb0555019027f796d9622bbbe136 100644 (file)
@@ -336,7 +336,7 @@ static void rtl8723be_dm_find_minimum_rssi(struct ieee80211_hw *hw)
                rtl_dm_dig->min_undec_pwdb_for_dm =
                                rtlpriv->dm.entry_min_undec_sm_pwdb;
                RT_TRACE(rtlpriv, COMP_BB_POWERSAVING, DBG_LOUD,
-                        "AP Ext Port or disconnet PWDB = 0x%x\n",
+                        "AP Ext Port or disconnect PWDB = 0x%x\n",
                          rtl_dm_dig->min_undec_pwdb_for_dm);
        }
        RT_TRACE(rtlpriv, COMP_DIG, DBG_LOUD, "MinUndecoratedPWDBForDM =%d\n",
index 9be106109921b5ba94cbc44dc88b83e35f6e2759..cb20e23744e314772a6ecda36561d67af959d0cc 100644 (file)
@@ -899,7 +899,7 @@ static void rtl8821ae_dm_dig(struct ieee80211_hw *hw)
 
        if (rtlpriv->falsealm_cnt.cnt_all > 10000) {
                RT_TRACE(rtlpriv, COMP_DIG, DBG_LOUD,
-                        "Abnornally false alarm case.\n");
+                        "Abnormally false alarm case.\n");
 
                if (dm_digtable->large_fa_hit != 3)
                        dm_digtable->large_fa_hit++;
index caa1531337540dec37c71d6865da922702e9bf3d..a656d9e8334302c2ec4f013ad6c016034ace5f27 100644 (file)
@@ -357,7 +357,7 @@ static int parse_slot_config(int slot,
                }
                if (flags & HPEE_FUNCTION_INFO_CFG_FREE_FORM) {
                        /* I have no idea how to handle this */
-                       printk("function %d have free-form confgiuration, skipping ",
+                       printk("function %d have free-form configuration, skipping ",
                                num_func);
                        pos = p0 + function_len;
                        continue;
index 80d97f3d2ed9b36753f8beaac4448a361fd2b3c5..1028760b8a22145e792de569862641d627d5b89f 100644 (file)
@@ -237,7 +237,7 @@ int beiscsi_mccq_compl(struct beiscsi_hba *phba,
                        beiscsi_log(phba, KERN_WARNING,
                                    BEISCSI_LOG_INIT | BEISCSI_LOG_EH |
                                    BEISCSI_LOG_CONFIG,
-                                   "BC_%d : Insufficent Buffer Error "
+                                   "BC_%d : Insufficient Buffer Error "
                                    "Resp_Len : %d Actual_Resp_Len : %d\n",
                                    mbx_resp_hdr->response_length,
                                    mbx_resp_hdr->actual_resp_len);
index 488c3929f19a95b84377d9ae522fb9b236857d3c..0cccd6033feb6b477366fc3343e665d1ed68562e 100644 (file)
@@ -186,7 +186,7 @@ static int _osd_get_print_system_info(struct osd_dev *od,
 
                if (unlikely(len > sizeof(odi->systemid))) {
                        OSD_ERR("OSD Target error: OSD_SYSTEM_ID too long(%d). "
-                               "device idetification might not work\n", len);
+                               "device identification might not work\n", len);
                        len = sizeof(odi->systemid);
                }
                odi->systemid_len = len;
index 54cb2ac9339bdd4441b9125333222bbfefb3732c..7d2b18f2675ce2ef28b41db6cce442e5ba3ad390 100644 (file)
@@ -1274,7 +1274,7 @@ qla82xx_pinit_from_rom(scsi_qla_host_t *vha)
 
                if (off == ADDR_ERROR) {
                        ql_log(ql_log_fatal, vha, 0x0116,
-                           "Unknow addr: 0x%08lx.\n", buf[i].addr);
+                           "Unknown addr: 0x%08lx.\n", buf[i].addr);
                        continue;
                }
 
index db3dbd999cb6b1aec722c7ead94769d8eebb91a4..45bdc4d558c0a4c7db6ae83fabefbdb65fc2285f 100644 (file)
@@ -4174,7 +4174,7 @@ qla83xx_schedule_work(scsi_qla_host_t *base_vha, int work_code)
                break;
        default:
                ql_log(ql_log_warn, base_vha, 0xb05f,
-                   "Unknow work-code=0x%x.\n", work_code);
+                   "Unknown work-code=0x%x.\n", work_code);
        }
 
        return;
@@ -4774,7 +4774,7 @@ qla83xx_idc_state_handler(scsi_qla_host_t *base_vha)
                        break;
                default:
                        ql_log(ql_log_warn, base_vha, 0xb071,
-                           "Unknow Device State: %x.\n", dev_state);
+                           "Unknown Device State: %x.\n", dev_state);
                        qla83xx_idc_unlock(base_vha, 0);
                        qla8xxx_dev_failed_handler(base_vha);
                        rval = QLA_FUNCTION_FAILED;
index 61c41298b4ea7b09b727548bb1a00d71b60d50b9..3b91aedf439e1734e7bccf6c5dc81f918df11969 100644 (file)
@@ -1005,7 +1005,7 @@ rpcrdma_init_fmrs(struct rpcrdma_ia *ia, struct rpcrdma_buffer *buf)
        int i, rc;
 
        i = (buf->rb_max_requests + 1) * RPCRDMA_MAX_SEGS;
-       dprintk("RPC:       %s: initalizing %d FMRs\n", __func__, i);
+       dprintk("RPC:       %s: initializing %d FMRs\n", __func__, i);
 
        while (i--) {
                r = kzalloc(sizeof(*r), GFP_KERNEL);
@@ -1038,7 +1038,7 @@ rpcrdma_init_frmrs(struct rpcrdma_ia *ia, struct rpcrdma_buffer *buf)
        int i, rc;
 
        i = (buf->rb_max_requests + 1) * RPCRDMA_MAX_SEGS;
-       dprintk("RPC:       %s: initalizing %d FRMRs\n", __func__, i);
+       dprintk("RPC:       %s: initializing %d FRMRs\n", __func__, i);
 
        while (i--) {
                r = kzalloc(sizeof(*r), GFP_KERNEL);
index c7918f83b300086649f522bc5f663d9a5a88a5dc..1cb1ef765ca066371607a9b7b488dfc97ae22bbe 100644 (file)
@@ -456,7 +456,7 @@ static int convert_variable_fields(Dwarf_Die *vr_die, const char *varname,
                        return -EINVAL;
                }
                if (field->name[0] == '[') {
-                       pr_err("Semantic error: %s is not a pointor"
+                       pr_err("Semantic error: %s is not a pointer"
                               " nor array.\n", varname);
                        return -EINVAL;
                }