- 22 Feb, 2004 16 commits
-
-
Andrew Morton authored
From: Geert Uytterhoeven <geert@linux-m68k.org> M68k offsets.h: Move arch/m68k/kernel/m68k_defs.h to include/asm/offsets.h and use gen-asm-offsets framework (from Andreas Schwab and Ray Knight)
-
Andrew Morton authored
From: Paul Clements <Paul.Clements@SteelEye.com> Fix a module unload oops, as well as fix some return codes (so nbd-client can exit with the proper error code, rather than 0, when an error occurs).
-
Andrew Morton authored
From: "H. Peter Anvin" <hpa@transmeta.com> Remove the limit of 2048 pty's - allocate them on demand up to the 12:20 dev_t limit: a million.
-
Andrew Morton authored
From: Nick Piggin <piggin@cyberone.com.au> sys_shmat() need to be declared asmlinkage. This causes breakage when we actually get the proper prototypes into caller's scope.
-
Andrew Morton authored
From: Terence Ripperda <tripperda@nvidia.com> When coming out of standby, some chipsets lose their configuration in pci config space. this includes not just the agp master register being lost, but chipset-specific information, such as the physical address of the gatt table and other settings. Calling this configure routine again restores those settings. Dave said he was adding chipsets to this list on an "as needed and tested" basis. I ran across this problem I believe on a Dell Inspiron 4100 with nv11. (there had been some similar problems with specific nv11 systems when doing apm with the 2.4 kernel, I suspect, but haven't been able to verify, it's the same problem).
-
Andrew Morton authored
From: Russell King <rmk@arm.linux.org.uk> Here is a patch which updates various serial drivers in the kernel to make them less broken than they were before. Nevertheless, they are still broken. The improvement is to make these drivers use the tiocmget/tiocmset methods, which are present in the 2.6 kernel. Many of these have been incorrectly converted from the old global IRQ locking without regard for SMP issues, or still use the old global IRQ locking methods which are no longer present in 2.6 kernels. The full message thread can be found at: http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&threadm=1dvnl-5Pr-1%40gated-at.bofh.it&rnum=1&prev=/groups%3Fhl%3Den%26lr%3D%26ie%3DISO-8859-1%26q%3DOutstanding%2Bfixups%26btnG%3DGoogle%2BSearch%26meta%3Dgroup%253Dlinux.kernel
-
Andrew Morton authored
From: Russell King <rmk@arm.linux.org.uk> Convert a bunch of serial drivers to new-style ioctl handling.
-
bk://bk.arm.linux.org.uk/linux-2.6-rmkLinus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.5/linux
-
Russell King authored
A bit too over-eager to minimise the delta resulted in this Kconfig file trying to source a currently non-existent Kconfig file.
-
Russell King authored
ARM720T processors use the "late" abort option, which means we have to correct the base address of any page fault ourselves. However, we were mis-correcting the thumb "push" instruction, causing the retried instruction to fail in a spectacular way.
-
Peter Teichmann authored
Patch from: Peter Teichmann, edited by Russell King. * a bugfix to the pseudo palette handling in 16/32 bit modes: the pseudo palette is always kept in 32 bit integers * a bugfix to setcolreg() in 16 bit modes: there have to be 32 colour registers (this has nothing to do with the 16 pseudo palette colours, it is a bit misleading that setcolreg() is used both for pseudo palette setup and DIRECTCOLOR colour translation) (The behaviour should be selected using the visual and the rgb representation rather than the current BPP setting. --rmk) * change 16 bit visual from TRUECOLOR to DIRECTCOLOR * take the limited bandwidth of the RiscPC video memory into account for acornfb_valid_pixrate() * acornfb_vidc20_find_rates() now takes into account the differences between VRAM and DRAM when setting the FIFO preload value. With VRAM, the FIFO can be set to the highest possible setting because there are no latency considerations for other memory accesses. However, in 64 bit bus mode the FIFO preload value must not be set to VIDC20_CTRL_FIFO_28 because this will let the FIFO overflow. See VIDC20 manual page 33 (6.0 Setting the FIFO preload value). * select Multifreq monitor as default, increase frequency range for Multifreq monitor (this is of course a philosophical question, but I believe a sensible default setting should not impose too much limits to the user) (I dropped this change because it is known that some monitor hardware shipped with Acorn machines does not take kindly to wrong timing signals. If people really care, they should use the kernel command line to select the correct monitor type. --rmk)
-
Russell King authored
-
Russell King authored
Use the SA1111 GPIO functionality added by the previous cset to ensure that GPIOs are modified atomically.
-
Russell King authored
This introduces a set of functions which allow the SA1111 IO pins to be safely modified with no fear of other kernel threads interfering.
-
Bartlomiej Zolnierkiewicz authored
From: Andrey Borzenkov <arvidjaar@mail.ru> Also add dummy create_proc_ide_interfaces() for CONFIG_PROC_FS=n (per Linus' suggestion).
-
Ben Collins authored
-
- 21 Feb, 2004 21 commits
-
-
-
Ben Collins authored
-
bk://kernel.bkbits.net/davem/net-2.6Linus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.5/linux
-
bk://bk.arm.linux.org.uk/linux-2.6-serialLinus Torvalds authored
into ppc970.osdl.org:/home/torvalds/v2.5/linux
-
Bjorn Helgaas authored
Patch from: Bjorn Helgaas This patch against 2.6.2 fixes a minor issue with /proc/tty/drivers/*, which currently doesn't show MMIO address information. Current sample output: # cat /proc/tty/driver/serial serinfo:1.0 driver revision: 0: uart:16450 port:00000000 irq:65 tx:72 rx:0 RTS|DTR 1: uart:16550A port:00000000 irq:65 tx:2950 rx:0 RTS|DTR ... Output with the attached patch: # cat /proc/tty/driver/serial serinfo:1.0 driver revision: 0: uart:16450 mmio:0xF8031000 irq:65 tx:72 rx:0 RTS|DTR 1: uart:16550A mmio:0xFF5E0000 irq:65 tx:2403 rx:74 RTS|DTR ...
-
Bjorn Helgaas authored
Patch from: Bjorn Helgaas This makes us discover ACPI serial ports before PCI ones. The ACPI ports tend to be built-in, and discovering them late means their ttyS names move around if PCI serial ports are added or removed. I think it makes more sense to have relatively predictable and consistent names for the built-in hardware.
-
Mark Hindley authored
Patch from: Mark Hindley Patch below to ensure that 8250_pnp sets necessary flags so that 8250 driver will reserve ioports. Before, I was logging errors like Feb 20 08:42:37 titan kernel: Trying to free nonexistent resource <000003e8-000003ef> on module unload.
-
Ben Collins authored
-
Ben Collins authored
IEEE1394(r1146): Make the probe callback return an error if problems, and unbind drivers on failure.
-
Alexander Viro authored
-
David S. Miller authored
-
Benjamin Herrenschmidt authored
Andrew spotted this one, here's the fix: Remove usage of "current" as a variable name and structure member in the battery management code of PowerMac via-pmu and apm-emu drivers
-
Yoshinori Sato authored
delete obsolute CONFIG
-
Yoshinori Sato authored
- fix warning - byte swap miss fix - 16bit bus access problem fix
-
Yoshinori Sato authored
Fix any warnings
-
Yoshinori Sato authored
- duplicate define marge. - unused define delete. - reduced code size.
-
Yoshinori Sato authored
Illegal usp corrected a set problem in starting of thread.
-
Benjamin Herrenschmidt authored
This driver won't build with CONFIG_LBD due to a 64 bits division. Use the "simple" fix of a cast down to 32 bits, this is only a floppy driver, no need to do sector_div.
-
Benjamin Herrenschmidt authored
cpu_possible_map is needed by some modules, export it.
-
David S. Miller authored
While perusing the driver I noticed a workaround we don't have in the Linux driver. The comment I added explains the issue.
-
Benjamin Herrenschmidt authored
This patch removes the code that tweaked the L1 cache when setting up the L2 one. That was added a while ago in the intend of making things more robust but ended up breaking earlier 750 CPU setup. Also fix some crap in the L1 cache code that is only used for the powermac sleep at this point.
-
- 20 Feb, 2004 3 commits
-
-
Ben Collins authored
-
David S. Miller authored
into kernel.bkbits.net:/home/davem/net-2.6
-
David S. Miller authored
-