Re: [PATCH 09/11] net/ariadne: Improve debug prints

2012-03-21 Thread David Miller
From: Geert Uytterhoeven Date: Wed, 21 Mar 2012 10:51:53 +0100 > Remove casts and use proper printf()-style format specifiers instead. > > Signed-off-by: Geert Uytterhoeven You can merge these in via the m68k tree if you want. Acked-by: David S. Miller -- To unsubscribe from this list: send

Re: new ARAnyM with better FPU

2012-03-21 Thread Thorsten Glaser
Petr Stehlik dixit: >> Indeed, next month we'll all be forced into the new GUI generation... > >Actually we won't be forced into that. First, the 10.04 LTS is supported Uhm guys – use Debian? There’s also things like IceWM, evilwm and others. No need to go all GUI on us poor unsuspecting textmod

Re: new ARAnyM with better FPU

2012-03-21 Thread Petr Stehlik
Geert Uytterhoeven píše v Wed 21. 03. 2012 v 16:08 +0100: > On Wed, Mar 21, 2012 at 14:41, Petr Stehlik wrote: > > I am wondering if it is worth backporting the libmpfr and making new > > ARAnyM packages for 10.04 when the 12.04 is to be released in a month. > > Indeed, next month we'll all be fo

Re: new ARAnyM with better FPU

2012-03-21 Thread Geert Uytterhoeven
On Wed, Mar 21, 2012 at 14:41, Petr Stehlik wrote: > I am wondering if it is worth backporting the libmpfr and making new > ARAnyM packages for 10.04 when the 12.04 is to be released in a month. Indeed, next month we'll all be forced into the new GUI generation... Gr{oetje,eeting}s,            

Re: new ARAnyM with better FPU

2012-03-21 Thread Petr Stehlik
Geert Uytterhoeven píše v Wed 21. 03. 2012 v 11:08 +0100: > > Well, beware: Ubuntu < 10.10 (including the 10.04 LTS Lucid Lynx) does > > not have the necessary libmpfr3+. That also means that the Ubuntu Lucid > > packages I have prepared at > > > > http://sourceforge.net/projects/aranym/files/arany

Re: new ARAnyM with better FPU

2012-03-21 Thread Geert Uytterhoeven
Hi Petr, On Wed, Mar 21, 2012 at 10:34, Petr Stehlik wrote: > Thorsten Glaser píše v St 21. 03. 2012 v 09:07 +: >> >ARAnyM Debian maintainer is working on updating the package in Debian >> >sid as well. >> >> OK, great. I’ll wait for that, upgrade the box with sid on >> it and will backport t

[PATCH 03/11] m68k/amiga: Add error checks when registering platform devices

2012-03-21 Thread Geert Uytterhoeven
Signed-off-by: Geert Uytterhoeven --- arch/m68k/amiga/platform.c | 122 1 files changed, 90 insertions(+), 32 deletions(-) diff --git a/arch/m68k/amiga/platform.c b/arch/m68k/amiga/platform.c index 1b8db5c..2872891 100644 --- a/arch/m68k/amiga/platfo

[PATCH 05/11] m68k/atari: Add missing platform check before registering platform devices

2012-03-21 Thread Geert Uytterhoeven
On multi-platform kernels, the Atari platform devices should be registered when running on Atari only. Else it may crash later. Signed-off-by: Geert Uytterhoeven --- arch/m68k/atari/config.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/arch/m68k/atari/config.c b/arc

[PATCH 04/11] m68k/amiga: Use arch_initcall() for registering platform devices

2012-03-21 Thread Geert Uytterhoeven
module_init() maps to device_initcall(), opening the possibility of race conditions between platform_driver_probe() and registering platform devices. Signed-off-by: Geert Uytterhoeven --- arch/m68k/amiga/platform.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/m6

[PATCH 06/11] m68k/atari: Change VME irq numbers from unsigned long to unsigned int

2012-03-21 Thread Geert Uytterhoeven
Device interrupts numbers were changed to unsigned int in 1997, the year IRQ_MACHSPEC was killed as well. Also kill a related cast while we're at it. Signed-off-by: Geert Uytterhoeven Cc: net...@vger.kernel.org --- arch/m68k/atari/ataints.c |4 ++-- arch/m68k/include/asm/atariin

[PATCH 07/11] m68k/mac: Add missing platform check before registering platform devices

2012-03-21 Thread Geert Uytterhoeven
On multi-platform kernels, the Mac platform devices should be registered when running on Mac only. Else it may crash later. Signed-off-by: Geert Uytterhoeven Cc: sta...@vger.kernel.org --- arch/m68k/mac/config.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/arch/m68k

[PATCH 02/11] m68k/amiga: Mark z_dev_present() __init

2012-03-21 Thread Geert Uytterhoeven
It's called from amiga_init_devices() only, which is __init. Signed-off-by: Geert Uytterhoeven --- arch/m68k/amiga/platform.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/m68k/amiga/platform.c b/arch/m68k/amiga/platform.c index 7fd8b41..1b8db5c 100644 --- a/arch

[PATCH 08/11] input/amijoy: Add missing platform check

2012-03-21 Thread Geert Uytterhoeven
On multi-platform kernels, the Amiga joystick driver may be initialized when running on Amiga only. Else it may crash later. Fortunately this driver is almost always compiled as a module (to avoid conflicts with the mouse driver), so it needs an explicit insmod to trigger a crash. Signed-off-by: G

[PATCH 09/11] net/ariadne: Improve debug prints

2012-03-21 Thread Geert Uytterhoeven
Remove casts and use proper printf()-style format specifiers instead. Signed-off-by: Geert Uytterhoeven Cc: David S. Miller Cc: net...@vger.kernel.org --- drivers/net/ethernet/amd/ariadne.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/ethernet/amd/

[PATCH 10/11] scsi/atari: Revive "atascsi=" setup option

2012-03-21 Thread Geert Uytterhoeven
It was documented in Documentation/m68k/kernel-options.txt and Documentation/scsi/scsi-parameters.txt, but the implementation was missing. Signed-off-by: Geert Uytterhoeven Cc: Michael Schmitz Cc: James E.J. Bottomley Cc: linux-s...@vger.kernel.org --- drivers/scsi/atari_scsi.c | 13

[PATCH 11/11] scsi/atari: Make more functions static

2012-03-21 Thread Geert Uytterhoeven
Signed-off-by: Geert Uytterhoeven Cc: Michael Schmitz Cc: James E.J. Bottomley Cc: linux-s...@vger.kernel.org --- drivers/scsi/atari_scsi.c | 13 +++-- drivers/scsi/atari_scsi.h |5 - 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/drivers/scsi/atari_scsi.c b/d

[PATCH 01/11] m68k: Remove unused MAX_NOINT_IPL definition

2012-03-21 Thread Geert Uytterhoeven
Signed-off-by: Geert Uytterhoeven --- arch/m68k/include/asm/entry.h |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/arch/m68k/include/asm/entry.h b/arch/m68k/include/asm/entry.h index 622138d..5d8b21c 100644 --- a/arch/m68k/include/asm/entry.h +++ b/arch/m68k/include/asm

[git pull] m68knommu arch updates for 3.4

2012-03-21 Thread Greg Ungerer
Hi Linus, Can you please pull the m68knommu git tree, for-next branch: git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-next Includes a cleanup of the non-MMU linker script (it now almost exclusively uses the well defined linker script support macros and definitions). Some

Re: new ARAnyM with better FPU

2012-03-21 Thread Petr Stehlik
Thorsten Glaser píše v St 21. 03. 2012 v 09:07 +: > >ARAnyM Debian maintainer is working on updating the package in Debian > >sid as well. > > OK, great. I’ll wait for that, upgrade the box with sid on > it and will backport to *shudder* hardy Well, beware: Ubuntu < 10.10 (including the 10.04

Re: [PATCH v2.2 2/7] crypto: GnuPG based MPI lib - header files (part 2)

2012-03-21 Thread Geert Uytterhoeven
Ping? On Sun, Mar 11, 2012 at 10:55, Geert Uytterhoeven wrote: > On Wed, 19 Oct 2011, Dmitry Kasatkin wrote: >> Adds the multi-precision-integer maths library which was originally taken >> from GnuPG and ported to the kernel by (among others) David Howells. >> This version is taken from Fedora ke