Commit 79a4c583 authored by Dave Jones's avatar Dave Jones

[PATCH] Various typo fixes.

Mostly harmless but 1-2 break compilation.
parent 701fee79
......@@ -107,8 +107,8 @@ assembling the 16-bit boot code, removing the need for as86 to compile
your kernel. This change does, however, mean that you need a recent
release of binutils.
System utililities
==================
System utilities
================
Architectural changes
---------------------
......
......@@ -3,7 +3,7 @@ Submitting Drivers For The Linux Kernel
This document is intended to explain how to submit device drivers to the
Linux 2.2 and 2.4 kernel trees. Note that if you are interested in video
card drivers you should probably talk to XFree86 (http://wwww.xfree86.org)
card drivers you should probably talk to XFree86 (http://www.xfree86.org)
instead.
Also read the Documentation/SubmittingPatches document.
......
......@@ -327,7 +327,7 @@ static void do_nbd_request(request_queue_t * q)
req = CURRENT;
#ifdef PARANOIA
if (!req)
FAIL("que not empty but no request?");
FAIL("queue not empty but no request?");
#endif
dev = minor(req->rq_dev);
#ifdef PARANOIA
......
......@@ -2458,7 +2458,7 @@ static inline int stl_initeio(stlbrd_t *brdp)
}
/*
* We have verfied that the board is actually present, so now we
* We have verified that the board is actually present, so now we
* can complete the setup.
*/
......
......@@ -1369,7 +1369,7 @@ static void __exit cleanup_ftl(void)
unregister_blkdev(FTL_MAJOR, "ftl");
blk_cleanup_queue(BLK_DEFAULT_QUEUE(FTL_MAJOR));
bklk_clear(FTL_MAJOR);
blk_clear(FTL_MAJOR);
del_gendisk(&ftl_gendisk);
}
......
......@@ -112,7 +112,7 @@ struct bulk_cs_wrap {
#define US_BULK_GET_MAX_LUN 0xfe
/*
* us_bulk_transfer() return codes
* usb_stor_transfer() return codes
*/
#define US_BULK_TRANSFER_GOOD 0 /* good transfer */
#define US_BULK_TRANSFER_SHORT 1 /* transfered less than expected */
......
......@@ -3,7 +3,7 @@
*
* Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999
*
* mouning, unmounting, error handling
* mounting, unmounting, error handling
*/
#include <linux/string.h>
......
......@@ -83,7 +83,7 @@ struct device {
device */
void *driver_data; /* data private to the driver */
void *platform_data; /* Platform specific data (e.g. ACPI,
BIOS data relevant to device */
BIOS data relevant to device) */
u32 current_state; /* Current operating state. In
ACPI-speak, this is D0-D3, D0
......
......@@ -6,7 +6,7 @@
extern unsigned securebits;
/* When set UID 0 has no special privileges. When unset, we support
inheritance of root-permissions and suid-root executablew under
inheritance of root-permissions and suid-root executable under
compatibility mode. We raise the effective and inheritable bitmasks
*of the executable file* if the effective uid of the new process is
0. If the real uid is 0, we raise the inheritable bitmask of the
......
......@@ -474,11 +474,11 @@ int do_sysctl_strategy (ctl_table *table,
}
/**
* register_sysctl_table - register a sysctl heirarchy
* register_sysctl_table - register a sysctl hierarchy
* @table: the top-level table structure
* @insert_at_head: whether the entry should be inserted in front or at the end
*
* Register a sysctl table heirarchy. @table should be a filled in ctl_table
* Register a sysctl table hierarchy. @table should be a filled in ctl_table
* array. An entry with a ctl_name of 0 terminates the table.
*
* The members of the &ctl_table structure are used as follows:
......@@ -562,7 +562,7 @@ struct ctl_table_header *register_sysctl_table(ctl_table * table,
}
/**
* unregister_sysctl_table - unregister a sysctl table heirarchy
* unregister_sysctl_table - unregister a sysctl table hierarchy
* @header: the header returned from register_sysctl_table
*
* Unregisters the sysctl table and all children. proc entries may not
......
......@@ -29,7 +29,7 @@
* NET/ROM 006 Alan(GW4PTS) Brought in line with the ANK changes
* Jonathan(G4KLX) Removed hdrincl.
* NET/ROM 007 Jonathan(G4KLX) New timer architecture.
* Impmented Idle timer.
* Implemented Idle timer.
* Arnaldo C. Melo s/suser/capable/, micro cleanups
*/
......
......@@ -52,7 +52,7 @@ static int rtctimer_stop(snd_timer_t *t);
/*
* The hardware dependent description for this timer.
* The hardware dependant description for this timer.
*/
static struct _snd_timer_hardware rtc_hw = {
flags: SNDRV_TIMER_HW_FIRST|SNDRV_TIMER_HW_AUTO,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment