Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
943ffb58
Commit
943ffb58
authored
Jan 10, 2006
by
Adrian Bunk
Committed by
Adrian Bunk
Jan 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
spelling: s/retreive/retrieve/
Signed-off-by:
Adrian Bunk
<
bunk@stusta.de
>
parent
54069588
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
20 additions
and
20 deletions
+20
-20
Documentation/i2o/ioctl
Documentation/i2o/ioctl
+1
-1
arch/powerpc/kernel/prom.c
arch/powerpc/kernel/prom.c
+1
-1
arch/powerpc/kernel/rtas.c
arch/powerpc/kernel/rtas.c
+1
-1
arch/powerpc/kernel/setup_64.c
arch/powerpc/kernel/setup_64.c
+1
-1
arch/powerpc/mm/hash_utils_64.c
arch/powerpc/mm/hash_utils_64.c
+1
-1
arch/powerpc/platforms/powermac/cpufreq_64.c
arch/powerpc/platforms/powermac/cpufreq_64.c
+1
-1
drivers/macintosh/therm_pm72.c
drivers/macintosh/therm_pm72.c
+2
-2
drivers/macintosh/windfarm_pm81.c
drivers/macintosh/windfarm_pm81.c
+1
-1
drivers/message/i2o/README.ioctl
drivers/message/i2o/README.ioctl
+1
-1
drivers/net/hp100.c
drivers/net/hp100.c
+1
-1
drivers/usb/serial/cypress_m8.c
drivers/usb/serial/cypress_m8.c
+1
-1
drivers/video/aty/radeon_monitor.c
drivers/video/aty/radeon_monitor.c
+1
-1
drivers/video/logo/Makefile
drivers/video/logo/Makefile
+1
-1
fs/9p/vfs_inode.c
fs/9p/vfs_inode.c
+1
-1
include/asm-powerpc/smu.h
include/asm-powerpc/smu.h
+3
-3
scripts/Makefile.modpost
scripts/Makefile.modpost
+1
-1
scripts/mksysmap
scripts/mksysmap
+1
-1
No files found.
Documentation/i2o/ioctl
View file @
943ffb58
...
...
@@ -185,7 +185,7 @@ VII. Getting Parameters
ENOMEM Kernel memory allocation error
A return value of 0 does not mean that the value was actually
properly retr
ei
ved. The user should check the result list
properly retr
ie
ved. The user should check the result list
to determine the specific status of the transaction.
VIII. Downloading Software
...
...
arch/powerpc/kernel/prom.c
View file @
943ffb58
...
...
@@ -972,7 +972,7 @@ static int __init early_init_dt_scan_chosen(unsigned long node,
#endif
#ifdef CONFIG_PPC_RTAS
/* To help early debugging via the front panel, we retr
ei
ve a minimal
/* To help early debugging via the front panel, we retr
ie
ve a minimal
* set of RTAS infos now if available
*/
{
...
...
arch/powerpc/kernel/rtas.c
View file @
943ffb58
...
...
@@ -632,7 +632,7 @@ void rtas_stop_self(void)
}
/*
* Call early during boot, before mem init or bootmem, to retr
ei
ve the RTAS
* Call early during boot, before mem init or bootmem, to retr
ie
ve the RTAS
* informations from the device-tree and allocate the RMO buffer for userland
* accesses.
*/
...
...
arch/powerpc/kernel/setup_64.c
View file @
943ffb58
...
...
@@ -438,7 +438,7 @@ void __init setup_system(void)
/*
* Fill the ppc64_caches & systemcfg structures with informations
* retr
ei
ved from the device-tree. Need to be called before
* retr
ie
ved from the device-tree. Need to be called before
* finish_device_tree() since the later requires some of the
* informations filled up here to properly parse the interrupt
* tree.
...
...
arch/powerpc/mm/hash_utils_64.c
View file @
943ffb58
...
...
@@ -368,7 +368,7 @@ static unsigned long __init htab_get_table_size(void)
unsigned
long
mem_size
,
rnd_mem_size
,
pteg_count
;
/* If hash size isn't already provided by the platform, we try to
* retr
ei
ve it from the device-tree. If it's not there neither, we
* retr
ie
ve it from the device-tree. If it's not there neither, we
* calculate it now based on the total RAM size
*/
if
(
ppc64_pft_size
==
0
)
...
...
arch/powerpc/platforms/powermac/cpufreq_64.c
View file @
943ffb58
...
...
@@ -80,7 +80,7 @@ static struct freq_attr* g5_cpu_freqs_attr[] = {
};
/* Power mode data is an array of the 32 bits PCR values to use for
* the various frequencies, retr
ei
ved from the device-tree
* the various frequencies, retr
ie
ved from the device-tree
*/
static
u32
*
g5_pmode_data
;
static
int
g5_pmode_max
;
...
...
drivers/macintosh/therm_pm72.c
View file @
943ffb58
...
...
@@ -630,12 +630,12 @@ static int read_eeprom(int cpu, struct mpu_data *out)
sprintf
(
nodename
,
"/u3@0,f8000000/i2c@f8001000/cpuid@a%d"
,
cpu
?
2
:
0
);
np
=
of_find_node_by_path
(
nodename
);
if
(
np
==
NULL
)
{
printk
(
KERN_ERR
"therm_pm72: Failed to retr
ei
ve cpuid node from device-tree
\n
"
);
printk
(
KERN_ERR
"therm_pm72: Failed to retr
ie
ve cpuid node from device-tree
\n
"
);
return
-
ENODEV
;
}
data
=
(
u8
*
)
get_property
(
np
,
"cpuid"
,
&
len
);
if
(
data
==
NULL
)
{
printk
(
KERN_ERR
"therm_pm72: Failed to retr
ei
ve cpuid property from device-tree
\n
"
);
printk
(
KERN_ERR
"therm_pm72: Failed to retr
ie
ve cpuid property from device-tree
\n
"
);
of_node_put
(
np
);
return
-
ENODEV
;
}
...
...
drivers/macintosh/windfarm_pm81.c
View file @
943ffb58
...
...
@@ -26,7 +26,7 @@
* (typically the drive fan)
* - the main control (first control) gets the target value scaled with
* the first pair of factors, and is then modified as below
* - the value of the target of the CPU Fan control loop is retr
ei
ved,
* - the value of the target of the CPU Fan control loop is retr
ie
ved,
* scaled with the second pair of factors, and the max of that and
* the scaled target is applied to the main control.
*
...
...
drivers/message/i2o/README.ioctl
View file @
943ffb58
...
...
@@ -185,7 +185,7 @@ VII. Getting Parameters
ENOMEM Kernel memory allocation error
A return value of 0 does not mean that the value was actually
properly retr
ei
ved. The user should check the result list
properly retr
ie
ved. The user should check the result list
to determine the specific status of the transaction.
VIII. Downloading Software
...
...
drivers/net/hp100.c
View file @
943ffb58
...
...
@@ -276,7 +276,7 @@ static void hp100_RegisterDump(struct net_device *dev);
* Convert an address in a kernel buffer to a bus/phys/dma address.
* This work *only* for memory fragments part of lp->page_vaddr,
* because it was properly DMA allocated via pci_alloc_consistent(),
* so we just need to "retr
ei
ve" the original mapping to bus/phys/dma
* so we just need to "retr
ie
ve" the original mapping to bus/phys/dma
* address - Jean II */
static
inline
dma_addr_t
virt_to_whatever
(
struct
net_device
*
dev
,
u32
*
ptr
)
{
...
...
drivers/usb/serial/cypress_m8.c
View file @
943ffb58
...
...
@@ -357,7 +357,7 @@ static int cypress_serial_control (struct usb_serial_port *port, unsigned baud_m
}
while
(
retval
!=
5
&&
retval
!=
ENODEV
);
if
(
retval
!=
5
)
{
err
(
"%s - failed to retr
ei
ve serial line settings - %d"
,
__FUNCTION__
,
retval
);
err
(
"%s - failed to retr
ie
ve serial line settings - %d"
,
__FUNCTION__
,
retval
);
return
retval
;
}
else
{
spin_lock_irqsave
(
&
priv
->
lock
,
flags
);
...
...
drivers/video/aty/radeon_monitor.c
View file @
943ffb58
...
...
@@ -423,7 +423,7 @@ static int __devinit radeon_parse_monitor_layout(struct radeonfb_info *rinfo,
/*
* Probe display on both primary and secondary card's connector (if any)
* by various available techniques (i2c, OF device tree, BIOS, ...) and
* try to retr
ei
ve EDID. The algorithm here comes from XFree's radeon
* try to retr
ie
ve EDID. The algorithm here comes from XFree's radeon
* driver
*/
void
__devinit
radeon_probe_screens
(
struct
radeonfb_info
*
rinfo
,
...
...
drivers/video/logo/Makefile
View file @
943ffb58
...
...
@@ -16,7 +16,7 @@ obj-$(CONFIG_LOGO_M32R_CLUT224) += logo_m32r_clut224.o
# How to generate logo's
# Use logo-cfiles to retr
ei
ve list of .c files to be built
# Use logo-cfiles to retr
ie
ve list of .c files to be built
logo-cfiles
=
$(
notdir
$(
patsubst
%.
$(2)
, %.c,
\
$(
wildcard
$(srctree)
/
$(src)
/
*
$(1)
.
$(2)
)))
...
...
fs/9p/vfs_inode.c
View file @
943ffb58
...
...
@@ -663,7 +663,7 @@ v9fs_vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
}
/**
* v9fs_vfs_getattr - retr
ei
ve file metadata
* v9fs_vfs_getattr - retr
ie
ve file metadata
* @mnt - mount information
* @dentry - file to get attributes on
* @stat - metadata structure to populate
...
...
include/asm-powerpc/smu.h
View file @
943ffb58
...
...
@@ -22,7 +22,7 @@
/*
* Partition info commands
*
* These commands are used to retr
ei
ve the sdb-partition-XX datas from
* These commands are used to retr
ie
ve the sdb-partition-XX datas from
* the SMU. The lenght is always 2. First byte is the subcommand code
* and second byte is the partition ID.
*
...
...
@@ -225,7 +225,7 @@
*
* SMU_CMD_MISC_ee_GET_DATABLOCK_REC is used, among others, to
* transfer blocks of data from the SMU. So far, I've decrypted it's
* usage to retr
ei
ve partition data. In order to do that, you have to
* usage to retr
ie
ve partition data. In order to do that, you have to
* break your transfer in "chunks" since that command cannot transfer
* more than a chunk at a time. The chunk size used by OF is 0xe bytes,
* but it seems that the darwin driver will let you do 0x1e bytes if
...
...
@@ -556,7 +556,7 @@ struct smu_user_cmd_hdr
__u32
cmdtype
;
#define SMU_CMDTYPE_SMU 0
/* SMU command */
#define SMU_CMDTYPE_WANTS_EVENTS 1
/* switch fd to events mode */
#define SMU_CMDTYPE_GET_PARTITION 2
/* retr
ei
ve an sdb partition */
#define SMU_CMDTYPE_GET_PARTITION 2
/* retr
ie
ve an sdb partition */
__u8
cmd
;
/* SMU command byte */
__u8
pad
[
3
];
/* padding */
...
...
scripts/Makefile.modpost
View file @
943ffb58
...
...
@@ -30,7 +30,7 @@
# - See include/linux/module.h for more details
# Step 4 is solely used to allow module versioning in external modules,
# where the CRC of each module is retr
ei
ved from the Module.symers file.
# where the CRC of each module is retr
ie
ved from the Module.symers file.
.PHONY
:
_modpost
_modpost
:
__modpost
...
...
scripts/mksysmap
View file @
943ffb58
#!/bin/sh -x
# Based on the vmlinux file create the System.map file
# System.map is used by module-init tools and some debugging
# tools to retr
ei
ve the actual addresses of symbols in the kernel.
# tools to retr
ie
ve the actual addresses of symbols in the kernel.
#
# Usage
# mksysmap vmlinux System.map
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment