Browse Source

treewide: Fix typo in printk

This patch fix spelling typo in printk within vairous
part of the code.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Masanari Iida 11 years ago
parent
commit
9b13494c91

+ 1 - 1
arch/blackfin/mach-common/ints-priority.c

@@ -455,7 +455,7 @@ void handle_sec_sci_fault(uint32_t gstat)
 			printk(KERN_DEBUG "sec ack err\n");
 			printk(KERN_DEBUG "sec ack err\n");
 			break;
 			break;
 		default:
 		default:
-			printk(KERN_DEBUG "sec sci unknow err\n");
+			printk(KERN_DEBUG "sec sci unknown err\n");
 		}
 		}
 	}
 	}
 
 

+ 1 - 1
drivers/gpu/drm/i915/intel_bios.c

@@ -945,7 +945,7 @@ static void parse_ddi_port(struct drm_i915_private *dev_priv, enum port port,
 		DRM_DEBUG_KMS("Analog port %c is also DP or TMDS compatible\n",
 		DRM_DEBUG_KMS("Analog port %c is also DP or TMDS compatible\n",
 			      port_name(port));
 			      port_name(port));
 	if (is_dvi && (port == PORT_A || port == PORT_E))
 	if (is_dvi && (port == PORT_A || port == PORT_E))
-		DRM_DEBUG_KMS("Port %c is TMDS compabile\n", port_name(port));
+		DRM_DEBUG_KMS("Port %c is TMDS compatible\n", port_name(port));
 	if (!is_dvi && !is_dp && !is_crt)
 	if (!is_dvi && !is_dp && !is_crt)
 		DRM_DEBUG_KMS("Port %c is not DP/TMDS/CRT compatible\n",
 		DRM_DEBUG_KMS("Port %c is not DP/TMDS/CRT compatible\n",
 			      port_name(port));
 			      port_name(port));

+ 1 - 1
drivers/i2c/busses/i2c-s3c2410.c

@@ -244,7 +244,7 @@ static bool is_ack(struct s3c24xx_i2c *i2c)
 		}
 		}
 		usleep_range(1000, 2000);
 		usleep_range(1000, 2000);
 	}
 	}
-	dev_err(i2c->dev, "ack was not recieved\n");
+	dev_err(i2c->dev, "ack was not received\n");
 	return false;
 	return false;
 }
 }
 
 

+ 1 - 1
drivers/infiniband/hw/usnic/usnic_ib_qp_grp.c

@@ -511,7 +511,7 @@ int usnic_ib_qp_grp_modify(struct usnic_ib_qp_grp *qp_grp,
 		usnic_ib_qp_grp_state_to_string(old_state),
 		usnic_ib_qp_grp_state_to_string(old_state),
 		usnic_ib_qp_grp_state_to_string(new_state));
 		usnic_ib_qp_grp_state_to_string(new_state));
 	} else {
 	} else {
-		usnic_err("Failed to transistion %u from %s to %s",
+		usnic_err("Failed to transition %u from %s to %s",
 		qp_grp->grp_id,
 		qp_grp->grp_id,
 		usnic_ib_qp_grp_state_to_string(old_state),
 		usnic_ib_qp_grp_state_to_string(old_state),
 		usnic_ib_qp_grp_state_to_string(new_state));
 		usnic_ib_qp_grp_state_to_string(new_state));

+ 1 - 1
drivers/media/usb/gspca/stv06xx/stv06xx_vv6410.c

@@ -259,7 +259,7 @@ static int vv6410_set_exposure(struct gspca_dev *gspca_dev, __s32 val)
 	fine = val % VV6410_CIF_LINELENGTH;
 	fine = val % VV6410_CIF_LINELENGTH;
 	coarse = min(512, val / VV6410_CIF_LINELENGTH);
 	coarse = min(512, val / VV6410_CIF_LINELENGTH);
 
 
-	PDEBUG(D_CONF, "Set coarse exposure to %d, fine expsure to %d",
+	PDEBUG(D_CONF, "Set coarse exposure to %d, fine exposure to %d",
 	       coarse, fine);
 	       coarse, fine);
 
 
 	err = stv06xx_write_sensor(sd, VV6410_FINEH, fine >> 8);
 	err = stv06xx_write_sensor(sd, VV6410_FINEH, fine >> 8);

+ 1 - 1
drivers/net/bonding/bond_sysfs_slave.c

@@ -36,7 +36,7 @@ static ssize_t state_show(struct slave *slave, char *buf)
 	case BOND_STATE_BACKUP:
 	case BOND_STATE_BACKUP:
 		return sprintf(buf, "backup\n");
 		return sprintf(buf, "backup\n");
 	default:
 	default:
-		return sprintf(buf, "UNKONWN\n");
+		return sprintf(buf, "UNKNOWN\n");
 	}
 	}
 }
 }
 static SLAVE_ATTR_RO(state);
 static SLAVE_ATTR_RO(state);

+ 1 - 1
drivers/net/ethernet/qlogic/netxen/netxen_nic_hw.c

@@ -922,7 +922,7 @@ int netxen_config_ipaddr(struct netxen_adapter *adapter, __be32 ip, int cmd)
 
 
 	rv = netxen_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
 	rv = netxen_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
 	if (rv != 0) {
 	if (rv != 0) {
-		printk(KERN_ERR "%s: could not notify %s IP 0x%x reuqest\n",
+		printk(KERN_ERR "%s: could not notify %s IP 0x%x request\n",
 				adapter->netdev->name,
 				adapter->netdev->name,
 				(cmd == NX_IP_UP) ? "Add" : "Remove", ip);
 				(cmd == NX_IP_UP) ? "Add" : "Remove", ip);
 	}
 	}

+ 1 - 1
drivers/net/ethernet/qlogic/qlcnic/qlcnic_hw.c

@@ -941,7 +941,7 @@ void qlcnic_82xx_config_ipaddr(struct qlcnic_adapter *adapter,
 	rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
 	rv = qlcnic_send_cmd_descs(adapter, (struct cmd_desc_type0 *)&req, 1);
 	if (rv != 0)
 	if (rv != 0)
 		dev_err(&adapter->netdev->dev,
 		dev_err(&adapter->netdev->dev,
-				"could not notify %s IP 0x%x reuqest\n",
+				"could not notify %s IP 0x%x request\n",
 				(cmd == QLCNIC_IP_UP) ? "Add" : "Remove", ip);
 				(cmd == QLCNIC_IP_UP) ? "Add" : "Remove", ip);
 }
 }
 
 

+ 1 - 1
drivers/net/wireless/libertas_tf/main.c

@@ -332,7 +332,7 @@ static int lbtf_op_start(struct ieee80211_hw *hw)
 
 
 err_prog_firmware:
 err_prog_firmware:
 	priv->hw_reset_device(card);
 	priv->hw_reset_device(card);
-	lbtf_deb_leave_args(LBTF_DEB_MACOPS, "error programing fw; ret=%d", ret);
+	lbtf_deb_leave_args(LBTF_DEB_MACOPS, "error programming fw; ret=%d", ret);
 	return ret;
 	return ret;
 }
 }
 
 

+ 1 - 1
drivers/scsi/aic7xxx/Kconfig.aic79xx

@@ -70,7 +70,7 @@ config AIC79XX_DEBUG_MASK
 	default "0"
 	default "0"
 	help
 	help
 	Bit mask of debug options that is only valid if the
 	Bit mask of debug options that is only valid if the
-	CONFIG_AIC79XX_DEBUG_ENBLE option is enabled.  The bits in this mask
+	CONFIG_AIC79XX_DEBUG_ENABLE option is enabled.  The bits in this mask
 	are defined in the drivers/scsi/aic7xxx/aic79xx.h - search for the
 	are defined in the drivers/scsi/aic7xxx/aic79xx.h - search for the
 	variable ahd_debug in that file to find them.
 	variable ahd_debug in that file to find them.
 
 

+ 1 - 1
drivers/scsi/nsp32.c

@@ -930,7 +930,7 @@ static int nsp32_queuecommand_lck(struct scsi_cmnd *SCpnt, void (*done)(struct s
 
 
 	/* check target ID is not same as this initiator ID */
 	/* check target ID is not same as this initiator ID */
 	if (scmd_id(SCpnt) == SCpnt->device->host->this_id) {
 	if (scmd_id(SCpnt) == SCpnt->device->host->this_id) {
-		nsp32_dbg(NSP32_DEBUG_QUEUECOMMAND, "terget==host???");
+		nsp32_dbg(NSP32_DEBUG_QUEUECOMMAND, "target==host???");
 		SCpnt->result = DID_BAD_TARGET << 16;
 		SCpnt->result = DID_BAD_TARGET << 16;
 		done(SCpnt);
 		done(SCpnt);
 		return 0;
 		return 0;

+ 1 - 1
drivers/scsi/pcmcia/nsp_cs.c

@@ -533,7 +533,7 @@ static int nsp_negate_signal(struct scsi_cmnd *SCpnt, unsigned char mask,
 	} while ((--time_out != 0) && (reg & mask) != 0);
 	} while ((--time_out != 0) && (reg & mask) != 0);
 
 
 	if (time_out == 0) {
 	if (time_out == 0) {
-		nsp_msg(KERN_DEBUG, " %s signal off timeut", str);
+		nsp_msg(KERN_DEBUG, " %s signal off timeout", str);
 	}
 	}
 
 
 	return 0;
 	return 0;

+ 1 - 1
drivers/scsi/qla2xxx/qla_nx2.c

@@ -399,7 +399,7 @@ qla8044_idc_lock(struct qla_hw_data *ha)
 				 */
 				 */
 				 ql_dbg(ql_dbg_p3p, vha, 0xb08a,
 				 ql_dbg(ql_dbg_p3p, vha, 0xb08a,
 				     "%s: IDC lock Recovery by %d "
 				     "%s: IDC lock Recovery by %d "
-				     "failed, Retrying timout\n", __func__,
+				     "failed, Retrying timeout\n", __func__,
 				     ha->portnum);
 				     ha->portnum);
 				 timeout = 0;
 				 timeout = 0;
 			}
 			}

+ 1 - 1
net/mac802154/wpan.c

@@ -90,7 +90,7 @@ mac802154_wpan_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
 	}
 	}
 	case SIOCSIFADDR:
 	case SIOCSIFADDR:
 		dev_warn(&dev->dev,
 		dev_warn(&dev->dev,
-			 "Using DEBUGing ioctl SIOCSIFADDR isn't recommened!\n");
+			 "Using DEBUGing ioctl SIOCSIFADDR isn't recommended!\n");
 		if (sa->family != AF_IEEE802154 ||
 		if (sa->family != AF_IEEE802154 ||
 		    sa->addr.addr_type != IEEE802154_ADDR_SHORT ||
 		    sa->addr.addr_type != IEEE802154_ADDR_SHORT ||
 		    sa->addr.pan_id == IEEE802154_PANID_BROADCAST ||
 		    sa->addr.pan_id == IEEE802154_PANID_BROADCAST ||