浏览代码

s/retreiv/retriev/g

As everyone knows, the rule is: "i before e.. um.. always."

Signed-off-by: Matt Mackall <mpm@selenic.com>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Matt Mackall 19 年之前
父节点
当前提交
4a4efbdee2
共有 7 个文件被更改,包括 16 次插入16 次删除
  1. 1 1
      drivers/char/n_hdlc.c
  2. 2 2
      drivers/net/tlan.c
  3. 1 1
      drivers/usb/serial/ftdi_sio.h
  4. 8 8
      drivers/video/aty/radeon_base.c
  5. 2 2
      fs/reiserfs/xattr.c
  6. 1 1
      net/irda/iriap.c
  7. 1 1
      scripts/kconfig/util.c

+ 1 - 1
drivers/char/n_hdlc.c

@@ -562,7 +562,7 @@ static void n_hdlc_tty_receive(struct tty_struct *tty, const __u8 *data,
 }	/* end of n_hdlc_tty_receive() */
 }	/* end of n_hdlc_tty_receive() */
 
 
 /**
 /**
- * n_hdlc_tty_read - Called to retreive one frame of data (if available)
+ * n_hdlc_tty_read - Called to retrieve one frame of data (if available)
  * @tty - pointer to tty instance data
  * @tty - pointer to tty instance data
  * @file - pointer to open file object
  * @file - pointer to open file object
  * @buf - pointer to returned data buffer
  * @buf - pointer to returned data buffer

+ 2 - 2
drivers/net/tlan.c

@@ -2865,11 +2865,11 @@ void TLan_PhyMonitor( struct net_device *dev )
 	 *				for this device.
 	 *				for this device.
 	 *		phy		The address of the PHY to be queried.
 	 *		phy		The address of the PHY to be queried.
 	 *		reg		The register whose contents are to be
 	 *		reg		The register whose contents are to be
-	 *				retreived.
+	 *				retrieved.
 	 *		val		A pointer to a variable to store the
 	 *		val		A pointer to a variable to store the
 	 *				retrieved value.
 	 *				retrieved value.
 	 *
 	 *
-	 *	This function uses the TLAN's MII bus to retreive the contents
+	 *	This function uses the TLAN's MII bus to retrieve the contents
 	 *	of a given register on a PHY.  It sends the appropriate info
 	 *	of a given register on a PHY.  It sends the appropriate info
 	 *	and then reads the 16-bit register value from the MII bus via
 	 *	and then reads the 16-bit register value from the MII bus via
 	 *	the TLAN SIO register.
 	 *	the TLAN SIO register.

+ 1 - 1
drivers/usb/serial/ftdi_sio.h

@@ -714,7 +714,7 @@ typedef enum {
  */
  */
 
 
 /* FTDI_SIO_GET_MODEM_STATUS */
 /* FTDI_SIO_GET_MODEM_STATUS */
-/* Retreive the current value of the modem status register */
+/* Retrieve the current value of the modem status register */
 
 
 #define FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE 0xc0
 #define FTDI_SIO_GET_MODEM_STATUS_REQUEST_TYPE 0xc0
 #define FTDI_SIO_GET_MODEM_STATUS_REQUEST FTDI_SIO_GET_MODEM_STATUS
 #define FTDI_SIO_GET_MODEM_STATUS_REQUEST FTDI_SIO_GET_MODEM_STATUS

+ 8 - 8
drivers/video/aty/radeon_base.c

@@ -594,7 +594,7 @@ static int __devinit radeon_probe_pll_params(struct radeonfb_info *rinfo)
 }
 }
 
 
 /*
 /*
- * Retreive PLL infos by different means (BIOS, Open Firmware, register probing...)
+ * Retrieve PLL infos by different means (BIOS, Open Firmware, register probing...)
  */
  */
 static void __devinit radeon_get_pllinfo(struct radeonfb_info *rinfo)
 static void __devinit radeon_get_pllinfo(struct radeonfb_info *rinfo)
 {
 {
@@ -660,17 +660,17 @@ static void __devinit radeon_get_pllinfo(struct radeonfb_info *rinfo)
 
 
 #ifdef CONFIG_PPC_OF
 #ifdef CONFIG_PPC_OF
 	/*
 	/*
-	 * Retreive PLL infos from Open Firmware first
+	 * Retrieve PLL infos from Open Firmware first
 	 */
 	 */
        	if (!force_measure_pll && radeon_read_xtal_OF(rinfo) == 0) {
        	if (!force_measure_pll && radeon_read_xtal_OF(rinfo) == 0) {
-       		printk(KERN_INFO "radeonfb: Retreived PLL infos from Open Firmware\n");
+       		printk(KERN_INFO "radeonfb: Retrieved PLL infos from Open Firmware\n");
 		goto found;
 		goto found;
 	}
 	}
 #endif /* CONFIG_PPC_OF */
 #endif /* CONFIG_PPC_OF */
 
 
 	/*
 	/*
 	 * Check out if we have an X86 which gave us some PLL informations
 	 * Check out if we have an X86 which gave us some PLL informations
-	 * and if yes, retreive them
+	 * and if yes, retrieve them
 	 */
 	 */
 	if (!force_measure_pll && rinfo->bios_seg) {
 	if (!force_measure_pll && rinfo->bios_seg) {
 		u16 pll_info_block = BIOS_IN16(rinfo->fp_bios_start + 0x30);
 		u16 pll_info_block = BIOS_IN16(rinfo->fp_bios_start + 0x30);
@@ -682,7 +682,7 @@ static void __devinit radeon_get_pllinfo(struct radeonfb_info *rinfo)
 		rinfo->pll.ppll_min	= BIOS_IN32(pll_info_block + 0x12);
 		rinfo->pll.ppll_min	= BIOS_IN32(pll_info_block + 0x12);
 		rinfo->pll.ppll_max	= BIOS_IN32(pll_info_block + 0x16);
 		rinfo->pll.ppll_max	= BIOS_IN32(pll_info_block + 0x16);
 
 
-		printk(KERN_INFO "radeonfb: Retreived PLL infos from BIOS\n");
+		printk(KERN_INFO "radeonfb: Retrieved PLL infos from BIOS\n");
 		goto found;
 		goto found;
 	}
 	}
 
 
@@ -691,7 +691,7 @@ static void __devinit radeon_get_pllinfo(struct radeonfb_info *rinfo)
 	 * probe them
 	 * probe them
 	 */
 	 */
 	if (radeon_probe_pll_params(rinfo) == 0) {
 	if (radeon_probe_pll_params(rinfo) == 0) {
-		printk(KERN_INFO "radeonfb: Retreived PLL infos from registers\n");
+		printk(KERN_INFO "radeonfb: Retrieved PLL infos from registers\n");
 		goto found;
 		goto found;
 	}
 	}
 
 
@@ -702,7 +702,7 @@ static void __devinit radeon_get_pllinfo(struct radeonfb_info *rinfo)
 
 
 found:
 found:
 	/*
 	/*
-	 * Some methods fail to retreive SCLK and MCLK values, we apply default
+	 * Some methods fail to retrieve SCLK and MCLK values, we apply default
 	 * settings in this case (200Mhz). If that really happne often, we could
 	 * settings in this case (200Mhz). If that really happne often, we could
 	 * fetch from registers instead...
 	 * fetch from registers instead...
 	 */
 	 */
@@ -2393,7 +2393,7 @@ static int radeonfb_pci_register (struct pci_dev *pdev,
 	       rinfo->mapped_vram/1024);
 	       rinfo->mapped_vram/1024);
 
 
 	/*
 	/*
-	 * Map the BIOS ROM if any and retreive PLL parameters from
+	 * Map the BIOS ROM if any and retrieve PLL parameters from
 	 * the BIOS. We skip that on mobility chips as the real panel
 	 * the BIOS. We skip that on mobility chips as the real panel
 	 * values we need aren't in the ROM but in the BIOS image in
 	 * values we need aren't in the ROM but in the BIOS image in
 	 * memory. This is definitely not the best meacnism though,
 	 * memory. This is definitely not the best meacnism though,

+ 2 - 2
fs/reiserfs/xattr.c

@@ -115,8 +115,8 @@ static struct dentry *__get_xa_root(struct super_block *s)
 }
 }
 
 
 /* Returns the dentry (or NULL) referring to the root of the extended
 /* Returns the dentry (or NULL) referring to the root of the extended
- * attribute directory tree. If it has already been retreived, it is used.
- * Otherwise, we attempt to retreive it from disk. It may also return
+ * attribute directory tree. If it has already been retrieved, it is used.
+ * Otherwise, we attempt to retrieve it from disk. It may also return
  * a pointer-encoded error.
  * a pointer-encoded error.
  */
  */
 static inline struct dentry *get_xa_root(struct super_block *s)
 static inline struct dentry *get_xa_root(struct super_block *s)

+ 1 - 1
net/irda/iriap.c

@@ -364,7 +364,7 @@ static void iriap_disconnect_request(struct iriap_cb *self)
 /*
 /*
  * Function iriap_getvaluebyclass (addr, name, attr)
  * Function iriap_getvaluebyclass (addr, name, attr)
  *
  *
- *    Retreive all values from attribute in all objects with given class
+ *    Retrieve all values from attribute in all objects with given class
  *    name
  *    name
  */
  */
 int iriap_getvaluebyclass_request(struct iriap_cb *self,
 int iriap_getvaluebyclass_request(struct iriap_cb *self,

+ 1 - 1
scripts/kconfig/util.c

@@ -101,7 +101,7 @@ void str_printf(struct gstr *gs, const char *fmt, ...)
 	va_end(ap);
 	va_end(ap);
 }
 }
 
 
-/* Retreive value of growable string */
+/* Retrieve value of growable string */
 const char *str_get(struct gstr *gs)
 const char *str_get(struct gstr *gs)
 {
 {
 	return gs->s;
 	return gs->s;