Re: [PATCH 00/10] ARM: OMAP1: ams-delta: replace custom I/O with GPIO

2011-12-11 Thread Jonathan McDowell
On Sun, Dec 11, 2011 at 09:11:58PM +0100, Janusz Krzysztofik wrote: The Amstrad Delta board has two extra output ports used for driving input lines of different on-board devices. Those ports are now controlled with custom functions, provided by the board arch code and used by several device

Re: [PATCH 2/3] video: omap: convert drivers/video/omap/* to use module_platform_driver()

2011-12-09 Thread Jonathan McDowell
On Fri, Dec 09, 2011 at 09:24:29AM +0100, Marek Vasut wrote: This patch converts the drivers in drivers/video/omap/* to use the module_platform_driver() macro which makes the code smaller and a bit simpler. Cc: Jonathan McDowell nood...@earth.li Cc: Cory Maccarrone darkstar6

Re: [PATCH 1/2] video: omap: Staticise non-exported symbols

2011-12-09 Thread Jonathan McDowell
...@gmail.com Likewise, for ams-delta, Acked-By: Jonathan McDowell nood...@earth.li J. -- Generally, all generalizations are false.. This .sig brought to you by the letter Z and the number 26 Product of the Republic of HuggieTag -- To unsubscribe from this list: send the line unsubscribe linux-omap

Re: [PATCH] OMAP3: RX51: support sleep indicator LEDs

2009-10-02 Thread Jonathan McDowell
On Fri, Oct 02, 2009 at 08:35:55AM -0700, Kevin Hilman wrote: The sleep indicator LEDs can be enabled/disabled by toggling GPIO162. Request this GPIO in RX51 board init, disable by default and expose GPIO162 to userspace so LEDs can be toggled from userspace: Wouldn't this be better done using

Re: [PATCHv1 1/3] OMAP UART: Adds omap-serial driver support.

2009-10-02 Thread Jonathan McDowell
. If it's OMAP3 hardware then should the depends on be ARCH_OMAP3 || ARCH_OMAP4, rather than allowing it for OMAP1 + 2 as well? J. -- Revd. Jonathan McDowell, ULC | If they can't take a jokefuck 'em. -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body

Re: [PATCH v3] OMAP1: AMS_DELTA: add modem support

2009-08-10 Thread Jonathan McDowell
-next, so there shouldn't be a problem with this version of your patch for 2.6.32. I haven't been able to test it myself (though I hope to next week), but it looks ok from a brief inspection, so: Acked-By: Jonathan McDowell nood...@earth.li Monday 06 July 2009 12:24:27 Janusz Krzysztofik wrote

[TRIVIAL PATCH] Fix compilation of arch/arm/mach-omap1/mailbox.c

2009-06-12 Thread Jonathan McDowell
This fixes the positioning of in MODULE_AUTHOR, which is currently causing a build failure on latest git with CONFIG_OMAP_MBOX_FWK=m; the original breakage appears to date from the end of last year in a5abbbe52b7e89a7633319c5417bd4331f7ac8ed Signed-Off-By: Jonathan McDowell nood...@earth.li

Re: [PATCH 04/20] omapfb: Add support for the Amstrad Delta LCD

2009-06-05 Thread Jonathan McDowell
On Fri, Jun 05, 2009 at 12:38:22PM +0200, Janusz Krzysztofik wrote: Thursday 04 June 2009 19:52:29 Imre Deak napisał(a): From: Jonathan McDowell nood...@earth.li This is an updated version of the LCD driver for the Amstrad Delta to take into account the recent changes to the omapfb

Re: [RFC][PATCH] Add support for hook switch on ams-delta

2009-06-04 Thread Jonathan McDowell
On Wed, Jun 03, 2009 at 11:03:20AM +0200, Janusz Krzysztofik wrote: Wednesday 03 June 2009 00:04:33 Jonathan McDowell napisał(a): I'm obviously too late as I've seen the Applied mail, No problem, I'm glad to hear from you. but some comments: * I don't think SW_HEADPHONE_INSERT

Re: [RFC][PATCH] Add support for hook switch on ams-delta

2009-06-02 Thread Jonathan McDowell
with gpio_export(). + * This should be done after the gpio-keys driver calls gpio_request(), + * but I don't know how to do this from outside of the driver. */ + /* gpio_export(AMS_DELTA_GPIO_PIN_HOOK_SWITCH, 0); */ } static void __init ams_delta_map_io(void) J. -- Revd. Jonathan

Re: [PATCH] Fix section mismatch warnings on some OMAP1 boards

2008-11-12 Thread Jonathan McDowell
On Tue, Nov 11, 2008 at 04:36:38PM -0800, Tony Lindgren wrote: * Jonathan McDowell [EMAIL PROTECTED] [08 15:43]: I got some section mismatch warnings when compiling latest git for MACH_AMS_DELTA this evening; this seems to be due to a missing __initdata on the omap_board_config_kernel

[PATCH] Fix section mismatch warnings on some OMAP1 boards

2008-11-11 Thread Jonathan McDowell
and voiceblue were all lacking it too, so I fixed them up at the same time. Signed-off-by: Jonathan McDowell [EMAIL PROTECTED] - diff --git a/arch/arm/mach-omap1/board-ams-delta.c b/arch/arm/mach-omap1/board-ams-delta.c index 2e61839..682cb91 100644 --- a/arch/arm/mach-omap1/board-ams-delta.c +++ b

[PATCH] Fix omap-gpio warnings when compiling for ARCH_OMAP15XX

2008-11-11 Thread Jonathan McDowell
When compiling for ARCH_OMAP15XX I get the following compiler warning in gpio.c: arch/arm/plat-omap/gpio.c: In function ‘_set_gpio_wakeup’: arch/arm/plat-omap/gpio.c:848: warning: unused variable ‘flags’ Simple patch below fixes this. Signed-off-by: Jonathan McDowell [EMAIL PROTECTED