[PATCH] m68k(nommu): Add missing syscalls

2007-09-09 Thread Geert Uytterhoeven
m68k(nommu): Add missing syscalls Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/kernel/entry.S | 10 ++ arch/m68knommu/kernel/syscalltable.S | 10 ++ include/asm-m68k/unistd.h| 12 +++- include/asm-m68knommu/un

gcc 4.1.2 not inlining?

2007-10-07 Thread Geert Uytterhoeven
geert.nba/linux/linux-m68k-2.6/drivers/net/wireless/libertas/debugfs.c Anyone else seeing this? Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical peop

Re: gcc 4.1.2 not inlining?

2007-10-08 Thread Geert Uytterhoeven
On Sun, 7 Oct 2007, Roman Zippel wrote: > On Sun, 7 Oct 2007, Geert Uytterhoeven wrote: > > On 2.6.23-rc9, I get this link error: > > | drivers/built-in.o: In function `libertas_parse_chan': > > | > > /home/geert.nba/linux/linux-m68k-2.6/drivers/net/wireless/libert

Re: [PATCH] Make m68k cross compile like every other architecture.

2007-10-11 Thread Geert Uytterhoeven
ULE += -T $(srctree)/arch/m68k/kernel/module.lds > -ifneq ($(COMPILE_ARCH),$(ARCH)) > - # prefix for cross-compiling binaries > - CROSS_COMPILE = m68k-linux-gnu- > -endif > > ifdef CONFIG_SUN3 > LDFLAGS_vmlinux = -N Gr{oetje,eeting}s,

Re: [PATCH] Make m68k cross compile like every other architecture.

2007-10-11 Thread Geert Uytterhoeven
On Thu, 11 Oct 2007, Sam Ravnborg wrote: > On Thu, Oct 11, 2007 at 09:25:19AM +0200, Geert Uytterhoeven wrote: > > On Wed, 10 Oct 2007, Rob Landley wrote: > > > From: Rob Landley <[EMAIL PROTECTED]> > > > > > > Rip out hardwired cross com

Re: [PATCH] Make m68k cross compile like every other architecture.

2007-10-11 Thread Geert Uytterhoeven
On Thu, 11 Oct 2007, Rob Landley wrote: > On Thursday 11 October 2007 7:46:47 am Geert Uytterhoeven wrote: > > On Thu, 11 Oct 2007, Sam Ravnborg wrote: > > > On Thu, Oct 11, 2007 at 09:25:19AM +0200, Geert Uytterhoeven wrote: > > > > On Wed, 10 Oct 2007, Rob La

Re: [PATCH] Make m68k cross compile like every other architecture.

2007-10-11 Thread Geert Uytterhoeven
ntly than the default on in arch/*/Makefile, what's the problem with calling? make ARCH=myarch CROSS_COMPILE=my-cross-compile-prefx- This has been working for +10 years on all non-ia32 platforms I ever worked on. Gr{oetje,eeting}s, G

Re: [PATCH] Make m68k cross compile like every other architecture.

2007-10-12 Thread Geert Uytterhoeven
kefile, fine for me, but IFF it's done for all architectures (i.e. check with the blackfin, h8300, mips, parisc, and xtensa people first). Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL

[patch 1/8] m68k: Atari input drivers cleanup

2007-10-13 Thread Geert Uytterhoeven
m68k: Atari input drivers cleanup: - memleak on failed init/register of input devices fixed - correct keycodes table (Atari keycodes are almost, but not entirely, equal to Linux keycodes). Signed-off-by: Michael Schmitz <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven &

[patch 6/8] m68k: fix net drivers after recent get_stats updates

2007-10-13 Thread Geert Uytterhoeven
m68k: fix net drivers after recent get_stats updates Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/net/macmace.c |6 +++--- drivers/net/mvme147.c |1 - 2 files changed, 3 insertions(+), 4 deletions(-) --- a/drivers/net/macmace.c +++ b/drivers/net/macmace.c @@

[patch 4/8] m68k: Export cachectl.h

2007-10-13 Thread Geert Uytterhoeven
From: Matthew Wilcox <[EMAIL PROTECTED]> libffi in GCC 4.2 needs cachectl.h to do its cache flushing. But we don't currently export it. I believe this patch should do the trick. Signed-off-by: Matthew Wilcox <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROT

[patch 8/8] ssb bus needs

2007-10-13 Thread Geert Uytterhoeven
function 'readl' linux/drivers/ssb/main.c: In function 'ssb_ssb_write16': linux/drivers/ssb/main.c:534: error: implicit declaration of function 'writew' linux/drivers/ssb/main.c: In function 'ssb_ssb_write32': linux/drivers/ssb/main.c:542: error: implicit decla

[patch 7/8] b43 wireless needs

2007-10-13 Thread Geert Uytterhoeven
/wireless/b43/phy.c:301: error: implicit declaration of function 'mmiowb' linuxdrivers/net/wireless/b43/sysfs.c: In function 'b43_attr_interfmode_store': linuxdrivers/net/wireless/b43/sysfs.c:147: error: implicit declaration of function 'mmiowb' Signed-off-by: Geert Uy

[patch 5/8] dm: emc_endio returns void

2007-10-13 Thread Geert Uytterhoeven
emc_endio returns void: linux/drivers/md/dm-emc.c: In function 'emc_endio': linux/drivers/md/dm-emc.c:58: warning: 'return' with a value, in function returning void Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/md/dm-emc.c |2 -- 1 file chan

[patch 0/8] m68k patches for 2.6.24

2007-10-13 Thread Geert Uytterhoeven
get_stats updates [7] b43 wireless needs [8] ssb bus needs Patches 1-4 are m68k support updates. Patches 5-8 are fixes for regressions/failures introduced after 2.6.23. Please apply, thanks! Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven

[patch 2/8] m68k: Atari keyboard ACIA driver cleanup

2007-10-13 Thread Geert Uytterhoeven
m68k: Atari keyboard ACIA driver cleanup: - removed dead key autorepeat code - removed hardcoded initial keymap Signed-off-by: Michael Schmitz <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/atari/atak

[patch 3/8] m68k: ignore restart_syscall

2007-10-13 Thread Geert Uytterhoeven
m68k: ignore restart_syscall, which is not needed on m68k. Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- include/asm-m68k/unistd.h |3 +++ 1 file changed, 3 insertions(+) --- a/include/asm-m68k/unistd.h +++ b/include/asm-m68k/unistd.h @@ -351,6 +351,9 @@ #

Re: [patch 2/8] m68k: Atari keyboard ACIA driver cleanup

2007-10-13 Thread Geert Uytterhoeven
On Sat, 13 Oct 2007, Andreas Schwab wrote: > Geert Uytterhoeven <[EMAIL PROTECTED]> writes: > > --- a/arch/m68k/atari/atakeyb.c > > +++ b/arch/m68k/atari/atakeyb.c > > @@ -1,5 +1,5 @@ > > /* > > - * linux/atari/atakeyb.c > > + * linux/arch/m68k/atar

Re: [patch 7/8] b43 wireless needs

2007-10-13 Thread Geert Uytterhoeven
On Sat, 13 Oct 2007, Larry Finger wrote: > Geert Uytterhoeven wrote: > > linux/drivers/net/wireless/b43/pio.h: In function 'b43_pio_write': > > linux/drivers/net/wireless/b43/pio.h:89: error: implicit declaration of > > function 'mmiowb' > > > &

m68k is not supported in glibc (fwd)

2007-10-13 Thread Geert Uytterhoeven
For those who run other distros than Debian... -- Forwarded message -- Date: Sat, 13 Oct 2007 12:21:35 -0500 From: Stephen R Marenka <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: m68k is not supported in glibc Resent-Date: Sat, 13 Oct 2007 17:22:12 + (UTC) Resent-From: [E

[PATCH] Atari keyboard: incorporate additional review comments

2007-10-15 Thread Geert Uytterhoeven
Atari keyboard: incorporate additional review comments: o Kill reference to source file name o Return error value from input_register_device() instead of -ENOMEM Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> Cc: Dmitry Torokhov <[EMAIL PROTECTED]> Cc: Michael Schmitz <[

Re: [PATCH] Make m68k cross compile like every other architecture.

2007-10-15 Thread Geert Uytterhoeven
On Fri, 12 Oct 2007, Sam Ravnborg wrote: > On Fri, Oct 12, 2007 at 10:51:00AM +0200, Geert Uytterhoeven wrote: > > On Fri, 12 Oct 2007, Finn Thain wrote: > > > > If your cross-compiler is called differently than the default on in > > > > arch/*/Makefile, > &g

Re: [GIT PATCH] SCSI updates for 2.6.24

2007-10-15 Thread Geert Uytterhoeven
7; | linux/drivers/scsi/NCR5380.c:2288: error: 'struct NCR5380_hostdata' has no member named 'ses' Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conve

Re: [GIT PATCH] SCSI updates for 2.6.24

2007-10-16 Thread Geert Uytterhoeven
On Tue, 16 Oct 2007, Boaz Harrosh wrote: > On Tue, Oct 16 2007 at 8:49 +0200, Geert Uytterhoeven <[EMAIL PROTECTED]> > wrote: > > On Mon, 15 Oct 2007, James Bottomley wrote: > >> This is the accumulated updates queued for 2.6.24. It contains the > >> usual sl

Re: Status of virgefb (Cybervision 3D) in 2.6

2007-10-17 Thread Geert Uytterhoeven
m to the 2.6 frame buffer API. > It shouldn't be too bad to pull it back from an older kernel and submit > a new patch. Indeed. Patches are accepted, as usual... Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lo

[PATCH] m68k: Use cc-cross-prefix (was: Re: [GI:wqT PULL] kbuild updates - second round)

2007-10-21 Thread Geert Uytterhoeven
On Fri, 19 Oct 2007, Sam Ravnborg wrote: > The cc-cross-prefix is new and developed on request from Geert Uytterhoeven. > With cc-cross-prefix it is now much easier to have a few default > cross compile prefixes and defaulting to none - if none of them were present. > ARCH maintainers

Re: [PATCH] m68k: Use cc-cross-prefix (was: Re: [GI:wqT PULL] kbuild updates - second round)

2007-10-21 Thread Geert Uytterhoeven
On Sun, 21 Oct 2007, Sam Ravnborg wrote: > On Sun, Oct 21, 2007 at 07:57:39PM +0200, Geert Uytterhoeven wrote: > > On Fri, 19 Oct 2007, Sam Ravnborg wrote: > > > The cc-cross-prefix is new and developed on request from Geert > > > Uytterhoeven. > > > With cc-c

Re: [PATCH] atari-ethernec: add missing bits in io.h, raw_io.h to make it compile again

2007-10-21 Thread Geert Uytterhoeven
,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer

Re: [PATCH] m68k: Use cc-cross-prefix (was: Re: [GI:wqT PULL] kbuild updates - second round)

2007-10-22 Thread Geert Uytterhoeven
On Mon, 22 Oct 2007, Kolbjørn Barmen wrote: > On Sun, 21 Oct 2007, Geert Uytterhoeven wrote: > > +ifneq ($(SUB_ARCH),$(ARCH)) > > + ifeq ($(CROSS_COMPILE),) > > +CROSS_COMPILE := $(call cc-cross-prefix, m68k-linux-gnu- > > m68k-linux-) > >

Re: [PATCH] m68k: Use cc-cross-prefix (was: Re: [GI:wqT PULL] kbuild updates - second round)

2007-10-22 Thread Geert Uytterhoeven
On Mon, 22 Oct 2007, Andreas Schwab wrote: > Geert Uytterhoeven <[EMAIL PROTECTED]> writes: > >> Did you mean to use $(SUBARCH) here? > ^^^ > > > Oops, indeed. Sorry, here's a new one... > > +ifneq ($(SUB_ARCH),$(ARCH))

Re: [PATCH 09/10] Change table chaining layout

2007-10-22 Thread Geert Uytterhoeven
et on architectures (e.g. m68k) where the natural alignment of 32-bit quantities is _2_ bytes, not 4? Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical

Re: [PATCH] Atari EtherNAT (SMC91C111) driver

2007-10-22 Thread Geert Uytterhoeven
]>?? (That's what I changed in your other patch). Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I call myself a hacker. B

Re: [PATCH 09/10] Change table chaining layout

2007-10-23 Thread Geert Uytterhoeven
nment, no? The stack pointer must be even (i.e. 2 byte-alignment). But it looks like current gcc always allocates multiples of 4 bytes on the stack, probably for performance reasons. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's

Re: [PATCH] Atari EtherNAT (SMC91C111) driver

2007-10-23 Thread Geert Uytterhoeven
; You mean MII? Doesn't `select MII' do the right thing? > > Did fail (MII compiled in when driver was modular) at least once for me. Strange. Do you remember what went wrong? Missing exports in MII? Gr{oetje,eeting}s, Geert --

Re: [PATCH 09/10] Change table chaining layout

2007-10-23 Thread Geert Uytterhoeven
or pullable from > > > > git://git.kernel.dk/inux-2.6-block.git sg > > i've attached your fixes as a diff against linus-latest below - for > those who'd like to have it in patch form. The below are still needed for m68k --- m68k: sg fallout Signed-off-

Re: [PATCH 09/10] Change table chaining layout

2007-10-24 Thread Geert Uytterhoeven
. > > I modified sg_set_page() to take a length and offset argument, and As it no longer sets the page only, perhaps it's a good idea to rename sg_set_page() to sg_set()? Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's l

Re: [2.6 patch] cleanup after APUS removal

2007-10-25 Thread Geert Uytterhoeven
On Wed, 24 Oct 2007, Adrian Bunk wrote: > After the APUS removal, some code can be removed. > > Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Acked-by: Geert Uytterhoeven <[EMAIL PROTECTED]> > --- > > arch/m68k/amiga/chipram.c |2 > drivers/i

Re: [PATCH] Atari EtherNAT (SMC91C111) driver

2007-10-28 Thread Geert Uytterhoeven
e kernel symbol table? Probably not. I've seen similar issues with switching from modular to builtin driver builds: udev will happily load the (old) driver module after scanning sysfs, while the driver is already builtin. Always make sure to remove the old *.ko files... Gr{oetje,eeting}

[RFC/PATCH] debug=mem on Amiga

2007-11-02 Thread Geert Uytterhoeven
turn 0; Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I call myself a hac

Re: [PATCH] Balancing ioremap and iounmap in m68k/atari/hades-pci.c

2007-11-04 Thread Geert Uytterhoeven
(i = 0; i < N_SLOTS; i++) - iounmap(pci_conf_base_virt[i]); + iounmap((void *)pci_conf_base_virt[i]); return NULL; } Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMA

Re: [2.6 patch] kill drivers/nubus/nubus_syms.c

2007-11-06 Thread Geert Uytterhoeven
On Mon, 5 Nov 2007, Adrian Bunk wrote: > EXPORT_SYMBOL's belong to the actual code. > Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Acked-by: Geert Uytterhoeven <[EMAIL PROTECTED]> if you add a #include to drivers/nubus/proc.c. I fixed it myself and added your 7 patches

Re: [PATCH] ser_a2232.c bug removed: handles "IRQ request denied" case (fwd)

2007-11-06 Thread Geert Uytterhoeven
-- Forwarded message -- Date: Mon, 05 Nov 2007 18:57:08 + From: Enver Haase <[EMAIL PROTECTED]> To: Andrew Morton <[EMAIL PROTECTED]> Cc: Linus Torvalds <[EMAIL PROTECTED]>, [EMAIL PROTECTED] Subject: Re: [PATCH] ser_a2232.c bug removed: handles "IRQ request denied" case Well

"dead" CONFIG variables under the include/ directory (fwd)

2007-11-09 Thread Geert Uytterhoeven
-- Forwarded message -- Date: Thu, 8 Nov 2007 09:09:04 -0500 (EST) From: Robert P. J. Day <[EMAIL PROTECTED]> To: Linux Kernel Mailing List <[EMAIL PROTECTED]> Subject: "dead" CONFIG variables under the include/ directory based on some recent posts from jiri olsa, i realize i'd

[PATCH] Amiga zorro bus: Add missing zorro_device_remove()

2007-11-11 Thread Geert Uytterhoeven
Amiga zorro bus: Add missing zorro_device_remove(). Without this ifconfig and /proc/net/dev oops after unloading a Zorro network device driver module. Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/zorro/zorro-driver.c | 15 +++ 1 file changed, 15 inse

Re: [PATCH] remove dead MAC_ADBKEYCODES

2007-11-16 Thread Geert Uytterhoeven
; > Signed-off-by: Stanislav Brabec <[EMAIL PROTECTED]> Acked-by: Geert Uytterhoeven <[EMAIL PROTECTED]> > --- a/arch/m68k/Kconfig > +++ b/arch/m68k/Kconfig > @@ -582,20 +582,6 @@ config MAC_HID > depends on INPUT_ADBHID > default y > > -config MAC_

Re: [PATCH] remove dead MAC_ADBKEYCODES

2007-11-16 Thread Geert Uytterhoeven
On Fri, 16 Nov 2007, Dmitry Torokhov wrote: > On Nov 16, 2007 4:44 AM, Geert Uytterhoeven <[EMAIL PROTECTED]> wrote: > > Wrong mailing list ;-) > > > > On Thu, 15 Nov 2007, Stanislav Brabec wrote: > > > It seems, that current kernel source code contains no tr

[patch 00/13] m68k patches for 2.6.25

2007-11-18 Thread Geert Uytterhoeven
[13] mac68k: remove dead MAC_ADBKEYCODES Please queue for 2.6.25. Thx! Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I call mys

[patch 02/13] dio: ARRAY_SIZE() cleanup

2007-11-18 Thread Geert Uytterhoeven
From: Alejandro Martinez Ruiz <[EMAIL PROTECTED]> dio: ARRAY_SIZE() cleanup Signed-off-by: Alejandro Martinez Ruiz <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/dio/dio.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a

[patch 01/13] m68k: ARRAY_SIZE() cleanup

2007-11-18 Thread Geert Uytterhoeven
From: Alejandro Martinez Ruiz <[EMAIL PROTECTED]> m68k: ARRAY_SIZE() cleanup Signed-off-by: Alejandro Martinez Ruiz <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/amiga/amisound.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-

[patch 04/13] nubus: kill drivers/nubus/nubus_syms.c

2007-11-18 Thread Geert Uytterhoeven
From: Adrian Bunk <[EMAIL PROTECTED]> nubus: kill drivers/nubus/nubus_syms.c EXPORT_SYMBOL's belong to the actual code. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/nubus/Makefile |1 -

[patch 03/13] m68k: Balance ioremap and iounmap in m68k/atari/hades-pci.c

2007-11-18 Thread Geert Uytterhoeven
From: Roel Kluin <[EMAIL PROTECTED]> m68k: Balance ioremap and iounmap in m68k/atari/hades-pci.c Signed-off-by: Roel Kluin <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/atari/hades-pci.c | 56 +-

[patch 06/13] m68k: kill arch/m68k/hp300/ksyms.c

2007-11-18 Thread Geert Uytterhoeven
From: Adrian Bunk <[EMAIL PROTECTED]> m68k: kill arch/m68k/hp300/ksyms.c It was empty. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/hp300/Makefile |2 +- arch/m68k/hp300/ksyms.c |9 -

[patch 05/13] m68k: kill arch/m68k/mac/mac_ksyms.c

2007-11-18 Thread Geert Uytterhoeven
From: Adrian Bunk <[EMAIL PROTECTED]> m68k: kill arch/m68k/mac/mac_ksyms.c EXPORT_SYMBOL's belong to the actual code. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/mac/Makefile|2 +- arch/m68k

[patch 10/13] mac68k: macii adb comment correction

2007-11-18 Thread Geert Uytterhoeven
From: Finn Thain <[EMAIL PROTECTED]> Corrects a mistake I made in a comment. Signed-off-by: Finn Thain <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/macintosh/via-macii.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a

[patch 08/13] m68k: kill arch/m68k/atari/atari_ksyms.c

2007-11-18 Thread Geert Uytterhoeven
From: Adrian Bunk <[EMAIL PROTECTED]> m68k: kill arch/m68k/atari/atari_ksyms.c EXPORT_SYMBOL's belong to the actual code. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/atari/Makefile |2 +- ar

[patch 07/13] m68k: kill arch/m68k/amiga/amiga_ksyms.c

2007-11-18 Thread Geert Uytterhoeven
From: Adrian Bunk <[EMAIL PROTECTED]> m68k: kill arch/m68k/amiga/amiga_ksyms.c EXPORT_SYMBOL's belong to the actual code. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/amiga/Makefile |

[patch 12/13] mac68k: add nubus card definitions and a typo fix

2007-11-18 Thread Geert Uytterhoeven
From: Finn Thain <[EMAIL PROTECTED]> Add some new card definitions and fix a typo (from Eugen Paiuc). Signed-off-by: Finn Thain <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- include/linux/nubus.h |4 +++- 1 file changed, 3 insertions(+), 1

[patch 13/13] mac68k: remove dead MAC_ADBKEYCODES

2007-11-18 Thread Geert Uytterhoeven
]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/Kconfig | 14 -- arch/m68k/configs/mac_defconfig |1 - 2 files changed, 15 deletions(-) --- a/arch/m68k/Kconfig +++ b/arch/m68k/Kconfig @@ -582,20 +582,6 @@ config MAC_HID depen

[patch 11/13] mac68k: remove dead code

2007-11-18 Thread Geert Uytterhoeven
From: Finn Thain <[EMAIL PROTECTED]> Remove dead code. Signed-off-by: Finn Thain <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/mac/config.c |2 -- include/asm-m68k/macintosh.h |2 -- 2 files changed, 4 deletions(-) -

[patch 09/13] m68k: kill arch/m68k/mvme16x/mvme16x_ksyms.c

2007-11-18 Thread Geert Uytterhoeven
From: Adrian Bunk <[EMAIL PROTECTED]> m68k: kill arch/m68k/mvme16x/mvme16x_ksyms.c EXPORT_SYMBOL's belong to the actual code. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/mvme16x/Makefile|

[patch 0/3] m68k patches for 2.6.24

2007-11-18 Thread Geert Uytterhoeven
Hi Linus, Andrew, Here are 3 m68k patches for 2.6.24: [1] m68k: export atari_keyb_init [2] Amiga zorro bus: Add missing zorro_device_remove() [3] mac68k: mailing list addresss Please apply. Thx! Gr{oetje,eeting}s, Geert -- Geert

[patch 1/3] m68k: export atari_keyb_init

2007-11-18 Thread Geert Uytterhoeven
ut/keyboard/atakbd.ko] undefined! make[2]: *** [__modpost] Error 1 <-- snip --> Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/atari/atakeyb.c |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---

[patch 2/3] Amiga zorro bus: Add missing zorro_device_remove()

2007-11-18 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> Amiga zorro bus: Add missing zorro_device_remove(). Without this ifconfig and /proc/net/dev oops after unloading a Zorro network device driver module. Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/zorro/zorro-dri

[patch 3/3] mac68k: mailing list addresss

2007-11-18 Thread Geert Uytterhoeven
From: Finn Thain <[EMAIL PROTECTED]> The mail service for the mac.linux-m68k.org domain is defunct. Signed-off-by: Finn Thain <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- MAINTAINERS |2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

Re: [patch 02/13] dio: ARRAY_SIZE() cleanup

2007-11-20 Thread Geert Uytterhoeven
On Tue, 20 Nov 2007, Richard Knutsson wrote: > Geert Uytterhoeven wrote: > > > -#define NUMNAMES (sizeof(names) / sizeof(struct dioname)) > > +#define NUMNAMES ARRAY_SIZE(names) > > Why not replace NUMNAMES? Good idea! Updated patch below. --- Subject: dio: AR

Re: zorro7xx.c:104: error: implicit declaration of function 'ZTWO_VADDR'

2007-11-24 Thread Geert Uytterhoeven
vers/scsi/zorro7xx.o] Error 1 > make[1]: *** [drivers/scsi] Error 2 > make: *** [drivers] Error 2 > > It would be nice to have a newer working kernel for my two Debian buildds, > though... ;-) Doesn't happen for me. Can you please post your .config? Gr{oetje,eeting}s,

Re: zorro7xx.c:104: error: implicit declaration of function 'ZTWO_VADDR'

2007-11-25 Thread Geert Uytterhoeven
On Sun, 25 Nov 2007, Ingo Juergensmann wrote: > On Sat, Nov 24, 2007 at 09:54:07PM +0100, Geert Uytterhoeven wrote: > > Thank you for CC'ing me! I've forgotten to explicitly mention it to keep me > on CC... :) Isn't that default behavior? ;-) > > >

Re: zorro7xx.c:104: error: implicit declaration of function 'ZTWO_VADDR'

2007-11-25 Thread Geert Uytterhoeven
On Sun, 25 Nov 2007, Geert Uytterhoeven wrote: > On Sun, 25 Nov 2007, Ingo Juergensmann wrote: > > On Sat, Nov 24, 2007 at 09:54:07PM +0100, Geert Uytterhoeven wrote: > > > > Thank you for CC'ing me! I've forgotten to explicitly mention it to keep me > >

[PATCH] m68k: zorro7xx needs

2007-11-26 Thread Geert Uytterhoeven
m68k: zorro7xx needs if !CONFIG_AMIGA_PCMCIA Reported by Ingo Juergensmann <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- Please apply for 2.6.24. drivers/scsi/zorro7xx.c |3 +++ 1 file changed, 3 insertions(+) --- a/drivers/scsi/zorro7xx.c +

Re: m68k build failure

2007-11-28 Thread Geert Uytterhoeven
> just weird as the unpadded size is 9 bytes. Could you dump the > __mod_sdio_device_table section so we can determine if it is cropped or just > oddly padded. 10 is correct. On m68k, the natural alignment of quantities larger than one byte is 2 bytes, not 4 bytes. Gr{oetje,eeting}s,

Re: m68k build failure

2007-11-28 Thread Geert Uytterhoeven
On Wed, 28 Nov 2007, Geert Uytterhoeven wrote: > On Wed, 28 Nov 2007, Pierre Ossman wrote: > > On Tue, 27 Nov 2007 22:07:23 -0800 > > Andrew Morton <[EMAIL PROTECTED]> wrote: > > > Current Linus tree give me this, with m68k allmodconfig: > > > > > >

ac.ac_ahz just looks a bit weird (fwd)

2007-11-28 Thread Geert Uytterhoeven
-- Forwarded message -- Date: Tue, 27 Nov 2007 14:26:19 -0500 (EST) From: Robert P. J. Day <[EMAIL PROTECTED]> To: Geert Uytterhoeven <[EMAIL PROTECTED]>, Roman Zippel <[EMAIL PROTECTED]> Subject: ac.ac_ahz just looks a bit weird i'm curious about th

Re: Draft TLS/NPTL ABI for m68k and ColdFire, version 0.2

2007-12-01 Thread Geert Uytterhoeven
rather expect Coldfire to go multicore some day... Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I call myself a hacker. But whe

Re: Porting Epson (S1D113A04) video driver from kernel 2.6.8 to 2.6.10

2007-12-03 Thread Geert Uytterhoeven
Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just

[PATCH/RFC] Revive initrd

2007-12-09 Thread Geert Uytterhoeven
>> PAGE_SHIFT; max_low_pfn = max_addr >> PAGE_SHIFT; for (i = 0; i < m68k_num_memory; i++) { Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conve

Re: [PATCH/RFC] Revive initrd

2007-12-09 Thread Geert Uytterhoeven
On Sun, 9 Dec 2007, Roman Zippel wrote: > On Sun, 9 Dec 2007, Geert Uytterhoeven wrote: > > Or are we just (again) the only platform where (a) physical memory doesn't > > start at zero and (b) we want to use initrd? > > A few archs set initrd_below_start_ok probably

[PATCH] initrd: Fix virtual/physical mix-up in overwrite test

2007-12-16 Thread Geert Uytterhoeven
68k (12d810c1b8c2b913d48e629e2b5c01d105029839), min_low_pfn was just left untouched by the m68k-specific code (zero, I guess), and everything worked fine. Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- On several platforms, initrd_below_start_ok is set to 1: | arch/mips/kerne

Re: [PATCH] initrd: Fix virtual/physical mix-up in overwrite test

2007-12-18 Thread Geert Uytterhoeven
On Tue, 18 Dec 2007, Andrew Morton wrote: > On Sun, 16 Dec 2007 11:51:00 +0100 (CET) Geert Uytterhoeven <[EMAIL > PROTECTED]> wrote: > > On recent kernels, I get the following error when using an initrd: > > > > | initrd overwritten (0x00b78000 < 0x07668000)

Re: [PATCH] initrd: Fix virtual/physical mix-up in overwrite test

2007-12-23 Thread Geert Uytterhoeven
On Tue, 18 Dec 2007, Andrew Morton wrote: > On Tue, 18 Dec 2007 20:52:07 +0100 (CET) Geert Uytterhoeven <[EMAIL > PROTECTED]> wrote: > > On Tue, 18 Dec 2007, Andrew Morton wrote: > > > On Sun, 16 Dec 2007 11:51:00 +0100 (CET) Geert Uytterhoeven <[EMAIL > > &g

Re: [PATCH 1/1] Remove of old NCR53C9x/esp family of drivers

2008-01-03 Thread Geert Uytterhoeven
rs and has hardware to test (some of) them? I don't think we can afford losing one third of our SCSI drivers... You can use the following as guidance: commit 5ff263667798946abc15314eae3f341345877d7a Author: Thomas Bogendoerfer <[EMAIL PROTECTED]> Date: Tue May 22 17:03:44 2007 -0700 [SCSI] jazz_esp: Converted to

Re: [PATCH 1/1] Remove of old NCR53C9x/esp family of drivers

2008-01-04 Thread Geert Uytterhoeven
On Thu, 3 Jan 2008, David Miller wrote: > From: Geert Uytterhoeven <[EMAIL PROTECTED]> > > On Thu, 3 Jan 2008, James Bottomley wrote: > > > On Thu, 2008-01-03 at 17:40 +0200, Boaz Harrosh wrote: > > > > As recommended by Christoph Hellwig. There is no use >

Re: [PATCH] atari aranym nfstderr

2008-01-11 Thread Geert Uytterhoeven
Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "

Re: [PATCH] atari aranym nfstderr

2008-01-11 Thread Geert Uytterhoeven
On Fri, 11 Jan 2008, Petr Stehlik wrote: > Geert Uytterhoeven wrote: > > > This patch adds a character device driver to allow user space access to > > > the aranym natfeats nfstderr. > > > > A few comments: > > - Since you need only one ch

Re: [PATCH] atari aranym nfstderr

2008-01-13 Thread Geert Uytterhoeven
On Sat, 12 Jan 2008, Stephen R Marenka wrote: > On Fri, Jan 11, 2008 at 11:19:03AM +0100, Andreas Schwab wrote: > > Geert Uytterhoeven <[EMAIL PROTECTED]> writes: > > > > > BTW, I find it a pity you cannot simply do `echo XXX > /dev/console' > > > in

Re: [PATCH] atari aranym nfstderr

2008-01-13 Thread Geert Uytterhoeven
On Sun, 13 Jan 2008, Stephen R Marenka wrote: > On Sun, Jan 13, 2008 at 12:30:14PM +0100, Geert Uytterhoeven wrote: > > On Sat, 12 Jan 2008, Stephen R Marenka wrote: > > > On Fri, Jan 11, 2008 at 11:19:03AM +0100, Andreas Schwab wrote: > > > > Geert Uytterhoe

Re: [PATCH] atari aranym nfstderr, take 2

2008-01-13 Thread Geert Uytterhoeven
one in xhdi.h? Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I j

Re: [PATCH] atari aranym nfstderr, take 2

2008-01-14 Thread Geert Uytterhoeven
me a modem :-( ...) so I won't ba able to check out the > ARAnyM source all that soon. There's still that ESP project waiting as > well... Ugh... Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32

Re: [PATCH] atari aranym nfstderr, take 2

2008-01-14 Thread Geert Uytterhoeven
On Mon, 14 Jan 2008, Petr Stehlik wrote: > Geert Uytterhoeven wrote: > > On Mon, 14 Jan 2008, Michael Schmitz wrote: > > > I've started on that, and run into the issue on what to do with the > > > various minors, i.e. partitions. Other than that, it looks prett

Re: [PATCH] atari aranym nfstderr, take 2

2008-01-15 Thread Geert Uytterhoeven
o->heads = 4; > + geo->sectors = 16; > + > + return 0; > +} I don't think you need getgeo these days. > +static struct block_device_operations nfhd_ops = { > + .owner = THIS_MODULE, > + .ioctl = blkdev_ioctl, > + .getgeo = nfhd_ge

Re: [PATCH] [NET]: Remove PowerPC code from fec.c

2008-01-25 Thread Geert Uytterhoeven
ribers-only) I already forwarded a copy of your email to Greg. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In personal conversations with technical people, I call myself a hacker. B

[patch 06/14] m68k: kill arch/m68k/mac/mac_ksyms.c

2008-01-27 Thread Geert Uytterhoeven
From: Adrian Bunk <[EMAIL PROTECTED]> m68k: kill arch/m68k/mac/mac_ksyms.c EXPORT_SYMBOL's belong to the actual code. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/mac/Makefile|2 +- arch/m68k

[patch 14/14] mac68k: remove dead MAC_ADBKEYCODES

2008-01-27 Thread Geert Uytterhoeven
]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/Kconfig | 14 -- arch/m68k/configs/mac_defconfig |1 - 2 files changed, 15 deletions(-) --- a/arch/m68k/Kconfig +++ b/arch/m68k/Kconfig @@ -582,20 +582,6 @@ config MAC_HID depen

[patch 04/14] m68k: Balance ioremap and iounmap in m68k/atari/hades-pci.c

2008-01-27 Thread Geert Uytterhoeven
From: Roel Kluin <[EMAIL PROTECTED]> m68k: Balance ioremap and iounmap in m68k/atari/hades-pci.c Signed-off-by: Roel Kluin <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/atari/hades-pci.c | 56 +-

[patch 13/14] mac68k: add nubus card definitions and a typo fix

2008-01-27 Thread Geert Uytterhoeven
From: Finn Thain <[EMAIL PROTECTED]> Add some new card definitions and fix a typo (from Eugen Paiuc). Signed-off-by: Finn Thain <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- include/linux/nubus.h |4 +++- 1 file changed, 3 insertions(+), 1

[patch 12/14] mac68k: remove dead code

2008-01-27 Thread Geert Uytterhoeven
From: Finn Thain <[EMAIL PROTECTED]> Remove dead code. Signed-off-by: Finn Thain <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/mac/config.c |2 -- include/asm-m68k/macintosh.h |2 -- 2 files changed, 4 deletions(-) -

[patch 11/14] mac68k: macii adb comment correction

2008-01-27 Thread Geert Uytterhoeven
From: Finn Thain <[EMAIL PROTECTED]> Corrects a mistake I made in a comment. Signed-off-by: Finn Thain <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/macintosh/via-macii.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a

[patch 03/14] dio: ARRAY_SIZE() cleanup

2008-01-27 Thread Geert Uytterhoeven
From: Alejandro Martinez Ruiz <[EMAIL PROTECTED]> dio: ARRAY_SIZE() cleanup [Geert: eliminate NUMNAMES, as suggested by Richard Knutsson ] Signed-off-by: Alejandro Martinez Ruiz <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- drivers/dio/dio.c |

[patch 00/14] M68k patches for 2.6.25

2008-01-27 Thread Geert Uytterhoeven
[13] mac68k: add nubus card definitions and a typo fix [14] mac68k: remove dead MAC_ADBKEYCODES Please apply, thanks! Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- [EMAIL PROTECTED] In per

[patch 01/14] m68k: Use cc-cross-prefix

2008-01-27 Thread Geert Uytterhoeven
From: Geert Uytterhoeven <[EMAIL PROTECTED]> m68k: Use cc-cross-prefix Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> Cc: Sam Ravnborg <[EMAIL PROTECTED]> --- arch/m68k/Makefile | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) --- a/arch/m68k/Makefi

[patch 02/14] m68k: ARRAY_SIZE() cleanup

2008-01-27 Thread Geert Uytterhoeven
From: Alejandro Martinez Ruiz <[EMAIL PROTECTED]> m68k: ARRAY_SIZE() cleanup Signed-off-by: Alejandro Martinez Ruiz <[EMAIL PROTECTED]> Signed-off-by: Geert Uytterhoeven <[EMAIL PROTECTED]> --- arch/m68k/amiga/amisound.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-

<    1   2   3   4   5   6   7   8   9   10   >