]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
ARM: OMAP: Palm Zire71 minor fixes
authorMarek Vašut <marek.vasut@gmail.com>
Thu, 16 Nov 2006 01:46:17 +0000 (03:46 +0200)
committerTony Lindgren <tony@atomide.com>
Thu, 16 Nov 2006 01:46:17 +0000 (03:46 +0200)
This patch makes minor changes in palmz71 board file (formating changes) and
renames one GPIO (PALMZ71_PINTDAV_GPIO to PALMZ71_PENIRQ_GPIO) in
board-palmz71.h and board-palmz71.c .

Signed-off-by: Marek Vašut <marek.vasut@gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap1/board-palmz71.c
drivers/video/omap/lcd_palmz71.c
include/asm-arm/arch-omap/board-palmz71.h

index 69169d0cb7356f87fd12808f2f18f406ed635f6c..ebcc6a70aeb020034bb07411825a2375787cc2ea 100644 (file)
@@ -192,8 +192,7 @@ static struct omap_mcbsp_reg_cfg mcbsp_regs = {
        .xcr1   = XFRLEN1(OMAP_MCBSP_WORD_8) | XWDLEN1(OMAP_MCBSP_WORD_16),
        .srgr1  = FWID(DEFAULT_BITPERSAMPLE - 1),
        .srgr2  = GSYNC | CLKSP | FSGM | FPER(DEFAULT_BITPERSAMPLE * 2 - 1),
-       /*.pcr0 = FSXM | FSRM | CLKXM | CLKRM | CLKXP | CLKRP, *//* mcbsp: master */
-       .pcr0 = CLKXP | CLKRP,  /* mcbsp: slave */
+       .pcr0   = CLKXP | CLKRP,        /* mcbsp: slave */
 };
 
 static struct omap_alsa_codec_config alsa_config = {
@@ -240,7 +239,7 @@ static struct platform_device *devices[] __initdata = {
 static int
 palmz71_get_pendown_state(void)
 {
-       return !omap_get_gpio_datain(6);
+       return !omap_get_gpio_datain(PALMZ71_PENIRQ_GPIO);
 }
 
 static const struct ads7846_platform_data palmz71_ts_info = {
@@ -251,16 +250,16 @@ static const struct ads7846_platform_data palmz71_ts_info = {
        .get_pendown_state      = palmz71_get_pendown_state,
 };
 
-static struct spi_board_info __initdata palmz71_boardinfo[] = {
-{
+static struct spi_board_info __initdata palmz71_boardinfo[] = { {
        /* MicroWire (bus 2) CS0 has an ads7846e */
        .modalias       = "ads7846",
        .platform_data  = &palmz71_ts_info,
-       .irq            = OMAP_GPIO_IRQ(6),
-       .max_speed_hz   = 120000 /* max sample rate at 3V */
-                               * 26 /* command + data + overhead */,
+       .irq            = OMAP_GPIO_IRQ(PALMZ71_PENIRQ_GPIO),
+       .max_speed_hz   = 120000        /* max sample rate at 3V */
+                               * 26    /* command + data + overhead */,
        .bus_num        = 2,
        .chip_select    = 0,
+       }
 } };
 
 static struct omap_usb_config palmz71_usb_config __initdata = {
@@ -288,10 +287,10 @@ static struct omap_uart_config palmz71_uart_config __initdata = {
 };
 
 static struct omap_board_config_kernel palmz71_config[] = {
-       {OMAP_TAG_USB, &palmz71_usb_config},
-       {OMAP_TAG_MMC, &palmz71_mmc_config},
-       {OMAP_TAG_LCD, &palmz71_lcd_config},
-       {OMAP_TAG_UART, &palmz71_uart_config},
+       {OMAP_TAG_USB,  &palmz71_usb_config},
+       {OMAP_TAG_MMC,  &palmz71_mmc_config},
+       {OMAP_TAG_LCD,  &palmz71_lcd_config},
+       {OMAP_TAG_UART, &palmz71_uart_config},
 };
 
 static irqreturn_t
@@ -343,10 +342,10 @@ palmz71_gpio_setup(int early)
                }
                omap_set_gpio_direction(PALMZ71_USBDETECT_GPIO, 1);
                if (request_irq(OMAP_GPIO_IRQ(PALMZ71_USBDETECT_GPIO),
-                       palmz71_powercable, SA_SAMPLE_RANDOM,
-                       "palmz71-cable", 0))
-                               printk(KERN_ERR
-                                       "IRQ request for power cable failed!\n");
+                               palmz71_powercable, SA_SAMPLE_RANDOM,
+                               "palmz71-cable", 0))
+                       printk(KERN_ERR
+                              "IRQ request for power cable failed!\n");
                palmz71_powercable(OMAP_GPIO_IRQ(PALMZ71_USBDETECT_GPIO), 0, 0);
        }
 }
index 3d2a0ce7662e26ce8d8a3329cd4de20748960ca5..797ab68c4dccda5678c218bdfa6dd1d2cfc26e0c 100644 (file)
@@ -30,8 +30,6 @@
 #include <asm/arch/gpio.h>
 #include <asm/arch/omapfb.h>
 
-/* #define OMAPFB_DBG 1 */
-
 static int palmz71_panel_init(struct omapfb_device *panel)
 {
        return 0;
index 6aff1490d84df5a732b38cb7dc5a3bffa5fc389b..1252a859787dc85ccdfcaca65f5f4c2017826584 100644 (file)
@@ -14,7 +14,7 @@
 #define __OMAP_BOARD_PALMZ71_H
 
 #define PALMZ71_USBDETECT_GPIO 0
-#define PALMZ71_PINTDAV_GPIO   6
+#define PALMZ71_PENIRQ_GPIO    6
 #define PALMZ71_MMC_WP_GPIO    8
 #define PALMZ71_HDQ_GPIO       11