[PATCH] powerpc: export copy_page() on 32bit

2008-01-01 Thread Joseph Fannin
Export copy_page() on 32bit powerpc; unionfs needs it. Unionfs already builds as a module on 64bit powerpc, so the export is placed within an existing CONFIG_PPC32 #ifdef. Signed-off-by: Joseph Fannin <[EMAIL PROTECTED]> --- I ran into this in the -mm tree; it's not new to 2.6.24-rc6-mm1. I hav

Re: [PATCH] ASoC drivers for the Freescale MPC8610 SoC

2008-01-01 Thread Jon Smirl
On 12/19/07, Timur Tabi <[EMAIL PROTECTED]> wrote: > + [EMAIL PROTECTED] { > + compatible = "fsl,ssi"; > + cell-index = <0>; > + reg = <16000 100>; > + interrupt-parent = <&mpic>; > +

Re: [PATCH] ASoC drivers for the Freescale MPC8610 SoC

2008-01-01 Thread Jon Smirl
On 1/1/08, Jon Smirl <[EMAIL PROTECTED]> wrote: > On 12/19/07, Timur Tabi <[EMAIL PROTECTED]> wrote: > > + [EMAIL PROTECTED] { > > + compatible = "fsl,ssi"; > > + cell-index = <0>; > > + reg = <16000 100>; > > +

Re: [PATCH 1/2] [POWERPC] smp_call_function_map should be static

2008-01-01 Thread Benjamin Herrenschmidt
On Thu, 2007-12-27 at 22:08 -0600, Olof Johansson wrote: > smp_call_function_map should be static, and for consistency prepend it > with __ like other local helper functions in the same file. > > Signed-off-by: Olof Johansson <[EMAIL PROTECTED]> NAK. I want it exported to other arch code, I'll n

Re: [PATCH 1/2] [POWERPC] smp_call_function_map should be static

2008-01-01 Thread Olof Johansson
On Wed, Jan 02, 2008 at 07:28:33AM +1100, Benjamin Herrenschmidt wrote: > > On Thu, 2007-12-27 at 22:08 -0600, Olof Johansson wrote: > > smp_call_function_map should be static, and for consistency prepend it > > with __ like other local helper functions in the same file. > > > > Signed-off-by: Ol

Re: [PATCH 1/2] [POWERPC] smp_call_function_map should be static

2008-01-01 Thread Benjamin Herrenschmidt
> With the locking changes in 2/2, it will need a new exported function > that does the locking around the call to __*. With that, it'd be easier > to just merge this. > > I.e. __smp_call_function_map() will be the internal (lockless) version, > and you'll end up adding a nonstatic smp_call_funct

Re: [PATCH] [2.6.24] Add PPC nvram ioctls to compat_ioctl

2008-01-01 Thread Arnd Bergmann
On Monday 31 December 2007, Olof Johansson wrote: > Fix the following console warning when running 'nvsetenv', and makes > setting of new variables work again: > > ioctl32(nvsetenv:4022): Unknown cmd fd(3) cmd(20007043){t:'p';sz:0} > arg(0003) on /dev/nvram > > That's the IOC_NVRAM_SYNC call.

Re: [PATCH] ASoC drivers for the Freescale MPC8610 SoC

2008-01-01 Thread David Gibson
On Tue, Jan 01, 2008 at 12:25:32PM -0500, Jon Smirl wrote: > On 12/19/07, Timur Tabi <[EMAIL PROTECTED]> wrote: > > + [EMAIL PROTECTED] { > > + compatible = "fsl,ssi"; > > + cell-index = <0>; > > + reg = <16000 100>; >

Re: [PATCH] [POWERPC] Update .gitignore files.

2008-01-01 Thread David Gibson
On Mon, Dec 31, 2007 at 05:14:53PM +0100, Jochen Friedrich wrote: > Update .gitignore as needed by dtc addition. > > Signed-off-by: Jochen Friedrich <[EMAIL PROTECTED]> Acked-by: David Gibson <[EMAIL PROTECTED]> -- David Gibson| I'll have my music baroque, and my code david

Re: [PATCH] ASoC drivers for the Freescale MPC8610 SoC

2008-01-01 Thread Jon Smirl
On 12/19/07, Timur Tabi <[EMAIL PROTECTED]> wrote: > sound/soc/fsl/fsl_ssi.c | 614 +++ > sound/soc/fsl/fsl_ssi.h | 224 +++ I'm confused about this part. You built a driver for the mpc8610 ssi port. This port has a device tree entry

Re: Using C67x00 on PXA255 with ov511

2008-01-01 Thread Grant Likely
On 1/1/08, LIU KAN <[EMAIL PROTECTED]> wrote: > Hello, Grant > > Thank you for the work on the patch of c67x00, I have use it > successfully on PXA255, but I still have some problem. > Now I can use c67x00 together with usb-disk in 2.6 kerenl at a > writing speed around 5MB/s. But w

Re: Please pull powerpc.git merge branch

2008-01-01 Thread Jeremy Kerr
Hi all, > I'm still out of office and can't do a proper test on this in the > way I should have done on the original patch, but your assessment and > patch looks entirely correct. Just built this for =y and =m, all seems fine. Cheers, Jeremy ___ Linu

Please pull powerpc.git merge branch

2008-01-01 Thread Paul Mackerras
Linus, Please do git pull \ git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc.git merge to get a fix for a bug introduced in one of the two commits I asked you to pull last time. Thanks, Paul. arch/powerpc/platforms/cell/spufs/sched.c |9 - 1 files changed, 0 insertions

[PATCH] [POWERPC] therm_pm72: suppress some compile warnings

2008-01-01 Thread Stephen Rothwell
We don't really care if any of these calls to device_create_file fails, so just issue warnings in that case. drivers/macintosh/therm_pm72.c: In function 'init_cpu_state': drivers/macintosh/therm_pm72.c:1185: warning: ignoring return value of 'device_create_file', declared with attribute warn_unus

[PATCH v3 2/4] USB: add Cypress c67x00 OTG controller core driver

2008-01-01 Thread Grant Likely
From: Grant Likely <[EMAIL PROTECTED]> This patch add the core driver for the c67x00 USB OTG controller. The core driver is responsible for the platform bus binding and creating either USB HCD or USB Gadget instances for each of the serial interface engines on the chip. This driver does not dire

[PATCH v3 1/4] USB: add Cypress c67x00 low level interface code

2008-01-01 Thread Grant Likely
From: Grant Likely <[EMAIL PROTECTED]> This patch adds the low level support code for the Cypress c67x00 family of OTG controllers. The low level code is responsible for register access and implements the software protocol for communicating with the c67x00 device. Signed-off-by: Grant Likely <[E

[PATCH v3 3/4] USB: add Cypress c67x00 OTG controller HCD driver

2008-01-01 Thread Grant Likely
From: Grant Likely <[EMAIL PROTECTED]> This patch adds HDC support for the Cypress c67x00 family of devices. Signed-off-by: Grant Likely <[EMAIL PROTECTED]> --- drivers/usb/c67x00/c67x00-hcd.c | 391 drivers/usb/c67x00/c67x00-hcd.h | 137 drivers/usb/c67x00/c67x00-sched.

[PATCH v3 4/4] USB: add Cypress c67x00 OTG controller driver to Kconfig and Makefiles

2008-01-01 Thread Grant Likely
From: Grant Likely <[EMAIL PROTECTED]> add c67x00 driver to build Signed-off-by: Grant Likely <[EMAIL PROTECTED]> --- drivers/usb/Makefile|2 ++ drivers/usb/c67x00/Makefile | 11 +++ drivers/usb/host/Kconfig| 12 3 files changed, 25 insertions(+), 0 dele