Skip to content

Commit 943ffb5

Browse files
AdrianBunkAdrian Bunk
authored andcommitted
spelling: s/retreive/retrieve/
Signed-off-by: Adrian Bunk <[email protected]>
1 parent 5406958 commit 943ffb5

File tree

17 files changed

+20
-20
lines changed

17 files changed

+20
-20
lines changed

Documentation/i2o/ioctl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ VII. Getting Parameters
185185
ENOMEM Kernel memory allocation error
186186

187187
A return value of 0 does not mean that the value was actually
188-
properly retreived. The user should check the result list
188+
properly retrieved. The user should check the result list
189189
to determine the specific status of the transaction.
190190

191191
VIII. Downloading Software

arch/powerpc/kernel/prom.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -972,7 +972,7 @@ static int __init early_init_dt_scan_chosen(unsigned long node,
972972
#endif
973973

974974
#ifdef CONFIG_PPC_RTAS
975-
/* To help early debugging via the front panel, we retreive a minimal
975+
/* To help early debugging via the front panel, we retrieve a minimal
976976
* set of RTAS infos now if available
977977
*/
978978
{

arch/powerpc/kernel/rtas.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ void rtas_stop_self(void)
632632
}
633633

634634
/*
635-
* Call early during boot, before mem init or bootmem, to retreive the RTAS
635+
* Call early during boot, before mem init or bootmem, to retrieve the RTAS
636636
* informations from the device-tree and allocate the RMO buffer for userland
637637
* accesses.
638638
*/

arch/powerpc/kernel/setup_64.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ void __init setup_system(void)
438438

439439
/*
440440
* Fill the ppc64_caches & systemcfg structures with informations
441-
* retreived from the device-tree. Need to be called before
441+
* retrieved from the device-tree. Need to be called before
442442
* finish_device_tree() since the later requires some of the
443443
* informations filled up here to properly parse the interrupt
444444
* tree.

arch/powerpc/mm/hash_utils_64.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ static unsigned long __init htab_get_table_size(void)
368368
unsigned long mem_size, rnd_mem_size, pteg_count;
369369

370370
/* If hash size isn't already provided by the platform, we try to
371-
* retreive it from the device-tree. If it's not there neither, we
371+
* retrieve it from the device-tree. If it's not there neither, we
372372
* calculate it now based on the total RAM size
373373
*/
374374
if (ppc64_pft_size == 0)

arch/powerpc/platforms/powermac/cpufreq_64.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ static struct freq_attr* g5_cpu_freqs_attr[] = {
8080
};
8181

8282
/* Power mode data is an array of the 32 bits PCR values to use for
83-
* the various frequencies, retreived from the device-tree
83+
* the various frequencies, retrieved from the device-tree
8484
*/
8585
static u32 *g5_pmode_data;
8686
static int g5_pmode_max;

drivers/macintosh/therm_pm72.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -630,12 +630,12 @@ static int read_eeprom(int cpu, struct mpu_data *out)
630630
sprintf(nodename, "/u3@0,f8000000/i2c@f8001000/cpuid@a%d", cpu ? 2 : 0);
631631
np = of_find_node_by_path(nodename);
632632
if (np == NULL) {
633-
printk(KERN_ERR "therm_pm72: Failed to retreive cpuid node from device-tree\n");
633+
printk(KERN_ERR "therm_pm72: Failed to retrieve cpuid node from device-tree\n");
634634
return -ENODEV;
635635
}
636636
data = (u8 *)get_property(np, "cpuid", &len);
637637
if (data == NULL) {
638-
printk(KERN_ERR "therm_pm72: Failed to retreive cpuid property from device-tree\n");
638+
printk(KERN_ERR "therm_pm72: Failed to retrieve cpuid property from device-tree\n");
639639
of_node_put(np);
640640
return -ENODEV;
641641
}

drivers/macintosh/windfarm_pm81.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* (typically the drive fan)
2727
* - the main control (first control) gets the target value scaled with
2828
* the first pair of factors, and is then modified as below
29-
* - the value of the target of the CPU Fan control loop is retreived,
29+
* - the value of the target of the CPU Fan control loop is retrieved,
3030
* scaled with the second pair of factors, and the max of that and
3131
* the scaled target is applied to the main control.
3232
*

drivers/message/i2o/README.ioctl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ VII. Getting Parameters
185185
ENOMEM Kernel memory allocation error
186186

187187
A return value of 0 does not mean that the value was actually
188-
properly retreived. The user should check the result list
188+
properly retrieved. The user should check the result list
189189
to determine the specific status of the transaction.
190190

191191
VIII. Downloading Software

drivers/net/hp100.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ static void hp100_RegisterDump(struct net_device *dev);
276276
* Convert an address in a kernel buffer to a bus/phys/dma address.
277277
* This work *only* for memory fragments part of lp->page_vaddr,
278278
* because it was properly DMA allocated via pci_alloc_consistent(),
279-
* so we just need to "retreive" the original mapping to bus/phys/dma
279+
* so we just need to "retrieve" the original mapping to bus/phys/dma
280280
* address - Jean II */
281281
static inline dma_addr_t virt_to_whatever(struct net_device *dev, u32 * ptr)
282282
{

drivers/usb/serial/cypress_m8.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ static int cypress_serial_control (struct usb_serial_port *port, unsigned baud_m
357357
} while (retval != 5 && retval != ENODEV);
358358

359359
if (retval != 5) {
360-
err("%s - failed to retreive serial line settings - %d", __FUNCTION__, retval);
360+
err("%s - failed to retrieve serial line settings - %d", __FUNCTION__, retval);
361361
return retval;
362362
} else {
363363
spin_lock_irqsave(&priv->lock, flags);

drivers/video/aty/radeon_monitor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ static int __devinit radeon_parse_monitor_layout(struct radeonfb_info *rinfo,
423423
/*
424424
* Probe display on both primary and secondary card's connector (if any)
425425
* by various available techniques (i2c, OF device tree, BIOS, ...) and
426-
* try to retreive EDID. The algorithm here comes from XFree's radeon
426+
* try to retrieve EDID. The algorithm here comes from XFree's radeon
427427
* driver
428428
*/
429429
void __devinit radeon_probe_screens(struct radeonfb_info *rinfo,

drivers/video/logo/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ obj-$(CONFIG_LOGO_M32R_CLUT224) += logo_m32r_clut224.o
1616

1717
# How to generate logo's
1818

19-
# Use logo-cfiles to retreive list of .c files to be built
19+
# Use logo-cfiles to retrieve list of .c files to be built
2020
logo-cfiles = $(notdir $(patsubst %.$(2), %.c, \
2121
$(wildcard $(srctree)/$(src)/*$(1).$(2))))
2222

fs/9p/vfs_inode.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ v9fs_vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
663663
}
664664

665665
/**
666-
* v9fs_vfs_getattr - retreive file metadata
666+
* v9fs_vfs_getattr - retrieve file metadata
667667
* @mnt - mount information
668668
* @dentry - file to get attributes on
669669
* @stat - metadata structure to populate

include/asm-powerpc/smu.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
/*
2323
* Partition info commands
2424
*
25-
* These commands are used to retreive the sdb-partition-XX datas from
25+
* These commands are used to retrieve the sdb-partition-XX datas from
2626
* the SMU. The lenght is always 2. First byte is the subcommand code
2727
* and second byte is the partition ID.
2828
*
@@ -225,7 +225,7 @@
225225
*
226226
* SMU_CMD_MISC_ee_GET_DATABLOCK_REC is used, among others, to
227227
* transfer blocks of data from the SMU. So far, I've decrypted it's
228-
* usage to retreive partition data. In order to do that, you have to
228+
* usage to retrieve partition data. In order to do that, you have to
229229
* break your transfer in "chunks" since that command cannot transfer
230230
* more than a chunk at a time. The chunk size used by OF is 0xe bytes,
231231
* but it seems that the darwin driver will let you do 0x1e bytes if
@@ -556,7 +556,7 @@ struct smu_user_cmd_hdr
556556
__u32 cmdtype;
557557
#define SMU_CMDTYPE_SMU 0 /* SMU command */
558558
#define SMU_CMDTYPE_WANTS_EVENTS 1 /* switch fd to events mode */
559-
#define SMU_CMDTYPE_GET_PARTITION 2 /* retreive an sdb partition */
559+
#define SMU_CMDTYPE_GET_PARTITION 2 /* retrieve an sdb partition */
560560

561561
__u8 cmd; /* SMU command byte */
562562
__u8 pad[3]; /* padding */

scripts/Makefile.modpost

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# - See include/linux/module.h for more details
3131

3232
# Step 4 is solely used to allow module versioning in external modules,
33-
# where the CRC of each module is retreived from the Module.symers file.
33+
# where the CRC of each module is retrieved from the Module.symers file.
3434

3535
.PHONY: _modpost
3636
_modpost: __modpost

scripts/mksysmap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh -x
22
# Based on the vmlinux file create the System.map file
33
# System.map is used by module-init tools and some debugging
4-
# tools to retreive the actual addresses of symbols in the kernel.
4+
# tools to retrieve the actual addresses of symbols in the kernel.
55
#
66
# Usage
77
# mksysmap vmlinux System.map

0 commit comments

Comments
 (0)