mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	treewide: fix errors in printk
This patch fix spelling typo in printk. Signed-off-by: Masanari Iida <standby24x7@gmail.com> Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> Acked-by: Randy Dunlap <rdunlap@infradead.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
This commit is contained in:
		
							parent
							
								
									307b28b95c
								
							
						
					
					
						commit
						1a84db567a
					
				
					 15 changed files with 16 additions and 16 deletions
				
			
		| 
						 | 
				
			
			@ -73,7 +73,7 @@ config ATARI_ETHERNEC
 | 
			
		|||
	  ROM port. The driver works by polling instead of interrupts, so it
 | 
			
		||||
	  is quite slow.
 | 
			
		||||
 | 
			
		||||
	  This driver also suppports the ethernet part of the NetUSBee ROM
 | 
			
		||||
	  This driver also supports the ethernet part of the NetUSBee ROM
 | 
			
		||||
	  port combined Ethernet/USB adapter.
 | 
			
		||||
 | 
			
		||||
	  To compile the actual ethernet driver, choose Y or M in for the NE2000
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -221,7 +221,7 @@ void __init ltq_soc_init(void)
 | 
			
		|||
		(request_mem_region(res_sys[2].start,
 | 
			
		||||
				resource_size(&res_sys[2]),
 | 
			
		||||
				res_sys[2].name) < 0))
 | 
			
		||||
		pr_err("Failed to request core reources");
 | 
			
		||||
		pr_err("Failed to request core resources");
 | 
			
		||||
 | 
			
		||||
	status_membase = ioremap_nocache(res_status.start,
 | 
			
		||||
					resource_size(&res_status));
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -318,7 +318,7 @@ void __init ltq_soc_init(void)
 | 
			
		|||
				res_cgu.name) < 0) ||
 | 
			
		||||
		(request_mem_region(res_ebu.start, resource_size(&res_ebu),
 | 
			
		||||
				res_ebu.name) < 0))
 | 
			
		||||
		pr_err("Failed to request core reources");
 | 
			
		||||
		pr_err("Failed to request core resources");
 | 
			
		||||
 | 
			
		||||
	pmu_membase = ioremap_nocache(res_pmu.start, resource_size(&res_pmu));
 | 
			
		||||
	ltq_cgu_membase = ioremap_nocache(res_cgu.start,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -218,7 +218,7 @@ static int ltq_pci_probe(struct platform_device *pdev)
 | 
			
		|||
	res_cfg = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 | 
			
		||||
	res_bridge = platform_get_resource(pdev, IORESOURCE_MEM, 1);
 | 
			
		||||
	if (!res_cfg || !res_bridge) {
 | 
			
		||||
		dev_err(&pdev->dev, "missing memory reources\n");
 | 
			
		||||
		dev_err(&pdev->dev, "missing memory resources\n");
 | 
			
		||||
		return -EINVAL;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -324,7 +324,7 @@ static void opal_handle_message(void)
 | 
			
		|||
 | 
			
		||||
	/* check for errors. */
 | 
			
		||||
	if (ret) {
 | 
			
		||||
		pr_warning("%s: Failed to retrive opal message, err=%lld\n",
 | 
			
		||||
		pr_warning("%s: Failed to retrieve opal message, err=%lld\n",
 | 
			
		||||
				__func__, ret);
 | 
			
		||||
		return;
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -436,7 +436,7 @@ static long adf_ctl_ioctl(struct file *fp, unsigned int cmd, unsigned long arg)
 | 
			
		|||
		ret = adf_ctl_ioctl_get_status(fp, cmd, arg);
 | 
			
		||||
		break;
 | 
			
		||||
	default:
 | 
			
		||||
		pr_err("QAT: Invalid ioclt\n");
 | 
			
		||||
		pr_err("QAT: Invalid ioctl\n");
 | 
			
		||||
		ret = -EFAULT;
 | 
			
		||||
		break;
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1859,7 +1859,7 @@ static int ocrdma_build_inline_sges(struct ocrdma_qp *qp,
 | 
			
		|||
		hdr->total_len = ocrdma_sglist_len(wr->sg_list, wr->num_sge);
 | 
			
		||||
		if (unlikely(hdr->total_len > qp->max_inline_data)) {
 | 
			
		||||
			pr_err("%s() supported_len=0x%x,\n"
 | 
			
		||||
			       " unspported len req=0x%x\n", __func__,
 | 
			
		||||
			       " unsupported len req=0x%x\n", __func__,
 | 
			
		||||
				qp->max_inline_data, hdr->total_len);
 | 
			
		||||
			return -EINVAL;
 | 
			
		||||
		}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1686,7 +1686,7 @@ static int mlx4_master_activate_admin_state(struct mlx4_priv *priv, int slave)
 | 
			
		|||
			if (err) {
 | 
			
		||||
				vp_oper->vlan_idx = NO_INDX;
 | 
			
		||||
				mlx4_warn(&priv->dev,
 | 
			
		||||
					  "No vlan resorces slave %d, port %d\n",
 | 
			
		||||
					  "No vlan resources slave %d, port %d\n",
 | 
			
		||||
					  slave, port);
 | 
			
		||||
				return err;
 | 
			
		||||
			}
 | 
			
		||||
| 
						 | 
				
			
			@ -1702,7 +1702,7 @@ static int mlx4_master_activate_admin_state(struct mlx4_priv *priv, int slave)
 | 
			
		|||
				err = vp_oper->mac_idx;
 | 
			
		||||
				vp_oper->mac_idx = NO_INDX;
 | 
			
		||||
				mlx4_warn(&priv->dev,
 | 
			
		||||
					  "No mac resorces slave %d, port %d\n",
 | 
			
		||||
					  "No mac resources slave %d, port %d\n",
 | 
			
		||||
					  slave, port);
 | 
			
		||||
				return err;
 | 
			
		||||
			}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -2056,7 +2056,7 @@ static int velocity_receive_frame(struct velocity_info *vptr, int idx)
 | 
			
		|||
	struct sk_buff *skb;
 | 
			
		||||
 | 
			
		||||
	if (rd->rdesc0.RSR & (RSR_STP | RSR_EDP)) {
 | 
			
		||||
		VELOCITY_PRT(MSG_LEVEL_VERBOSE, KERN_ERR " %s : the received frame span multple RDs.\n", vptr->netdev->name);
 | 
			
		||||
		VELOCITY_PRT(MSG_LEVEL_VERBOSE, KERN_ERR " %s : the received frame spans multiple RDs.\n", vptr->netdev->name);
 | 
			
		||||
		stats->rx_length_errors++;
 | 
			
		||||
		return -EINVAL;
 | 
			
		||||
	}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1353,7 +1353,7 @@ static int lbs_cfg_connect(struct wiphy *wiphy, struct net_device *dev,
 | 
			
		|||
		wait_event_interruptible_timeout(priv->scan_q,
 | 
			
		||||
						 (priv->scan_req == NULL),
 | 
			
		||||
						 (15 * HZ));
 | 
			
		||||
		lbs_deb_assoc("assoc: scanning competed\n");
 | 
			
		||||
		lbs_deb_assoc("assoc: scanning completed\n");
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	/* Find the BSS we want using available scan results */
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -210,7 +210,7 @@ static ssize_t fnic_trace_ctrl_write(struct file *filp,
 | 
			
		|||
	else if (*trace_type == fc_trc_flag->fc_clear)
 | 
			
		||||
		fnic_fc_trace_cleared = val;
 | 
			
		||||
	else
 | 
			
		||||
		pr_err("fnic: cannot write to any debufs file\n");
 | 
			
		||||
		pr_err("fnic: cannot write to any debugfs file\n");
 | 
			
		||||
 | 
			
		||||
	(*ppos)++;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -592,7 +592,7 @@ int fnic_fc_trace_set_data(u32 host_no, u8 frame_type,
 | 
			
		|||
 | 
			
		||||
	if (fnic_fc_trace_cleared == 1) {
 | 
			
		||||
		fc_trace_entries.rd_idx = fc_trace_entries.wr_idx = 0;
 | 
			
		||||
		pr_info("fnic: Reseting the read idx\n");
 | 
			
		||||
		pr_info("fnic: Resetting the read idx\n");
 | 
			
		||||
		memset((void *)fnic_fc_ctlr_trace_buf_p, 0,
 | 
			
		||||
				fnic_fc_trace_max_pages * PAGE_SIZE);
 | 
			
		||||
		fnic_fc_trace_cleared = 0;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -216,7 +216,7 @@ static int pm860x_backlight_probe(struct platform_device *pdev)
 | 
			
		|||
	data->reg_duty_cycle = res->start;
 | 
			
		||||
	res = platform_get_resource_byname(pdev, IORESOURCE_REG, "always on");
 | 
			
		||||
	if (!res) {
 | 
			
		||||
		dev_err(&pdev->dev, "No REG resorce for always on\n");
 | 
			
		||||
		dev_err(&pdev->dev, "No REG resource for always on\n");
 | 
			
		||||
		return -ENXIO;
 | 
			
		||||
	}
 | 
			
		||||
	data->reg_always_on = res->start;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -478,7 +478,7 @@ ip_set_test(ip_set_id_t index, const struct sk_buff *skb,
 | 
			
		|||
 | 
			
		||||
	if (ret == -EAGAIN) {
 | 
			
		||||
		/* Type requests element to be completed */
 | 
			
		||||
		pr_debug("element must be competed, ADD is triggered\n");
 | 
			
		||||
		pr_debug("element must be completed, ADD is triggered\n");
 | 
			
		||||
		write_lock_bh(&set->lock);
 | 
			
		||||
		set->variant->kadt(set, skb, par, IPSET_ADD, opt);
 | 
			
		||||
		write_unlock_bh(&set->lock);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -398,7 +398,7 @@ if ($verbose) {
 | 
			
		|||
    print "Size of signer's name  : ", length($signers_name), "\n";
 | 
			
		||||
    print "Size of key identifier : ", length($key_identifier), "\n";
 | 
			
		||||
    print "Size of signature      : ", length($signature), "\n";
 | 
			
		||||
    print "Size of informaton     : ", length($info), "\n";
 | 
			
		||||
    print "Size of information    : ", length($info), "\n";
 | 
			
		||||
    print "Size of magic number   : ", length($magic_number), "\n";
 | 
			
		||||
    print "Signer's name          : '", $signers_name, "'\n";
 | 
			
		||||
    print "Digest                 : $dgst\n";
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue