Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 31515
b: refs/heads/master
c: 3820c3f
h: refs/heads/master
i:
  31513: a41c57a
  31511: 50cf1f5
v: v3
  • Loading branch information
Herbert Xu authored and David S. Miller committed Jun 30, 2006
1 parent 364931a commit 628a9f2
Show file tree
Hide file tree
Showing 3,151 changed files with 6,388 additions and 3,557 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 93fdf10d4c28edaa1b9f80e7f9c3002359186d00
refs/heads/master: 3820c3f3e41786322c0bb225b9c77b8deff869d1
6 changes: 3 additions & 3 deletions trunk/Documentation/DocBook/mtdnand.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@ static unsigned long baseaddr;
<sect1>
<title>Partition defines</title>
<para>
If you want to divide your device into partitions, then
enable the configuration switch CONFIG_MTD_PARTITIONS and define
a partitioning scheme suitable to your board.
If you want to divide your device into parititions, then
enable the configuration switch CONFIG_MTD_PARITIONS and define
a paritioning scheme suitable to your board.
</para>
<programlisting>
#define NUM_PARTITIONS 2
Expand Down
2 changes: 1 addition & 1 deletion trunk/Documentation/arm/IXP4xx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ IXP4xx provides two methods of accessing PCI memory space:
2) If > 64MB of memory space is required, the IXP4xx can be
configured to use indirect registers to access PCI This allows
for up to 128MB (0x48000000 to 0x4fffffff) of memory on the bus.
The disadvantage of this is that every PCI access requires
The disadvantadge of this is that every PCI access requires
three local register accesses plus a spinlock, but in some
cases the performance hit is acceptable. In addition, you cannot
mmap() PCI devices in this case due to the indirect nature
Expand Down
2 changes: 1 addition & 1 deletion trunk/Documentation/digiepca.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ NOTE: This driver is obsolete. Digi provides a 2.6 driver (dgdm) at
http://www.digi.com for PCI cards. They no longer maintain this driver,
and have no 2.6 driver for ISA cards.

This driver requires a number of user-space tools. They can be acquired from
This driver requires a number of user-space tools. They can be aquired from
http://www.digi.com, but only works with 2.4 kernels.


Expand Down
2 changes: 1 addition & 1 deletion trunk/Documentation/memory-barriers.txt
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ Consider the following sequence of events:

This sequence of events is committed to the memory coherence system in an order
that the rest of the system might perceive as the unordered set of { STORE A,
STORE B, STORE C } all occurring before the unordered set of { STORE D, STORE E
STORE B, STORE C } all occuring before the unordered set of { STORE D, STORE E
}:

+-------+ : :
Expand Down
2 changes: 1 addition & 1 deletion trunk/Documentation/networking/pktgen.txt
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ Examples:
pgset "pkt_size 9014" sets packet size to 9014
pgset "frags 5" packet will consist of 5 fragments
pgset "count 200000" sets number of packets to send, set to zero
for continuous sends until explicitly stopped.
for continious sends untill explicitl stopped.

pgset "delay 5000" adds delay to hard_start_xmit(). nanoseconds

Expand Down
32 changes: 0 additions & 32 deletions trunk/Documentation/pcmcia/crc32hash.c

This file was deleted.

36 changes: 33 additions & 3 deletions trunk/Documentation/pcmcia/devicetable.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,37 @@ pcmcia:m0149cC1ABf06pfn00fn00pa725B842DpbF1EFEE84pc0877B627pd00000000
The hex value after "pa" is the hash of product ID string 1, after "pb" for
string 2 and so on.

Alternatively, you can use crc32hash (see Documentation/pcmcia/crc32hash.c)
to determine the crc32 hash. Simply pass the string you want to evaluate
as argument to this program, e.g.:
Alternatively, you can use this small tool to determine the crc32 hash.
simply pass the string you want to evaluate as argument to this program,
e.g.
$ ./crc32hash "Dual Speed"

-------------------------------------------------------------------------
/* crc32hash.c - derived from linux/lib/crc32.c, GNU GPL v2 */
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>

unsigned int crc32(unsigned char const *p, unsigned int len)
{
int i;
unsigned int crc = 0;
while (len--) {
crc ^= *p++;
for (i = 0; i < 8; i++)
crc = (crc >> 1) ^ ((crc & 1) ? 0xedb88320 : 0);
}
return crc;
}

int main(int argc, char **argv) {
unsigned int result;
if (argc != 2) {
printf("no string passed as argument\n");
return -1;
}
result = crc32(argv[1], strlen(argv[1]));
printf("0x%x\n", result);
return 0;
}
Original file line number Diff line number Diff line change
Expand Up @@ -3048,7 +3048,7 @@ struct _snd_pcm_runtime {
</para>

<para>
If you acquire a spinlock in the interrupt handler, and the
If you aquire a spinlock in the interrupt handler, and the
lock is used in other pcm callbacks, too, then you have to
release the lock before calling
<function>snd_pcm_period_elapsed()</function>, because
Expand Down
1 change: 0 additions & 1 deletion trunk/Documentation/video4linux/CARDLIST.cx88
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,3 @@
49 -> PixelView PlayTV P7000 [1554:4813]
50 -> NPG Tech Real TV FM Top 10 [14f1:0842]
51 -> WinFast DTV2000 H [107d:665e]
52 -> Geniatech DVB-S [14f1:0084]
7 changes: 7 additions & 0 deletions trunk/MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -2555,6 +2555,13 @@ M: thomas@winischhofer.net
W: http://www.winischhofer.at/linuxsisusbvga.shtml
S: Maintained

SMB FILESYSTEM
P: Urban Widmark
M: urban@teststation.com
W: http://samba.org/
L: samba@samba.org
S: Maintained

SMC91x ETHERNET DRIVER
P: Nicolas Pitre
M: nico@cam.org
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/alpha_ksyms.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* modules.
*/

#include <linux/config.h>
#include <linux/module.h>
#include <linux/string.h>
#include <linux/user.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/console.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* non-0 I/O hose
*/

#include <linux/config.h>
#include <linux/pci.h>
#include <linux/init.h>
#include <linux/tty.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* Kernel entry-points.
*/

#include <linux/config.h>
#include <asm/asm-offsets.h>
#include <asm/thread_info.h>
#include <asm/pal.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/gct.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* linux/arch/alpha/kernel/gct.c
*/

#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/errno.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* the kernel global pointer and jump to the kernel entry-point.
*/

#include <linux/config.h>
#include <asm/system.h>
#include <asm/asm-offsets.h>

Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/irq.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* should be easier.
*/

#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/errno.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/irq_alpha.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* Alpha specific irq code.
*/

#include <linux/config.h>
#include <linux/init.h>
#include <linux/sched.h>
#include <linux/irq.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/irq_i8259.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* Started hacking from linux-2.3.30pre6/arch/i386/kernel/i8259.c.
*/

#include <linux/config.h>
#include <linux/init.h>
#include <linux/cache.h>
#include <linux/sched.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/machvec_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* This file has goodies to help simplify instantiation of machine vectors.
*/

#include <linux/config.h>
#include <asm/pgalloc.h>

/* Whee. These systems don't have an HAE:
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* Nov 2000, Ivan Kokshaysky <ink@jurassic.park.msu.ru>
* PCI-PCI bridges cleanup
*/
#include <linux/config.h>
#include <linux/string.h>
#include <linux/pci.h>
#include <linux/init.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* This file handles the architecture-dependent parts of process handling.
*/

#include <linux/config.h>
#include <linux/errno.h>
#include <linux/module.h>
#include <linux/sched.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/proto.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <linux/config.h>
#include <linux/interrupt.h>


Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/smc37c93x.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* SMC 37C93X initialization code
*/

#include <linux/config.h>
#include <linux/kernel.h>

#include <linux/slab.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/srm_env.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
*/

#include <linux/kernel.h>
#include <linux/config.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/proc_fs.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/srmcons.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* (TTY driver and console driver)
*/

#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/console.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/sys_alcor.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* Code supporting the ALCOR and XLT (XL-300/366/433).
*/

#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mm.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/sys_cabriolet.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* PC164 and LX164.
*/

#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mm.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/sys_dp264.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* Code supporting the DP264 (EV6+TSUNAMI).
*/

#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mm.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/sys_eb64p.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* Code supporting the EB64+ and EB66.
*/

#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mm.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/sys_mikasa.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* Code supporting the MIKASA (AlphaServer 1000).
*/

#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mm.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/sys_noritake.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* CORELLE (AlphaServer 800), and ALCOR Primo (AlphaStation 600A).
*/

#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mm.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/sys_sable.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* Code supporting the Sable, Sable-Gamma, and Lynx systems.
*/

#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mm.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/sys_sio.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* Kenetics's Platform 2000, Avanti (AlphaStation), XL, and AlphaBook1.
*/

#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mm.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/sys_titan.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
* Granite
*/

#include <linux/config.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/mm.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/time.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
* 2003-06-03 R. Scott Bailey <scott.bailey@eds.com>
* Tighten sanity in time_init from 1% (10,000 PPM) to 250 PPM
*/
#include <linux/config.h>
#include <linux/errno.h>
#include <linux/module.h>
#include <linux/sched.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/traps.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* This file initializes the trap entry points
*/

#include <linux/config.h>
#include <linux/mm.h>
#include <linux/sched.h>
#include <linux/tty.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <linux/config.h>
#include <asm-generic/vmlinux.lds.h>

OUTPUT_FORMAT("elf64-alpha")
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/lib/callback_srm.S
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* arch/alpha/lib/callback_srm.S
*/

#include <linux/config.h>
#include <asm/console.h>

.text
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/lib/udelay.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* Delay routines, using a pre-computed "loops_per_jiffy" value.
*/

#include <linux/config.h>
#include <linux/module.h>
#include <linux/sched.h> /* for udelay's use of smp_processor_id */
#include <asm/param.h>
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/mm/extable.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* linux/arch/alpha/mm/extable.c
*/

#include <linux/config.h>
#include <linux/module.h>
#include <asm/uaccess.h>

Expand Down
1 change: 1 addition & 0 deletions trunk/arch/alpha/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* Copyright (C) 1995 Linus Torvalds
*/

#include <linux/config.h>
#include <linux/sched.h>
#include <linux/kernel.h>
#include <linux/mm.h>
Expand Down
Loading

0 comments on commit 628a9f2

Please sign in to comment.