25 Nov, 2010

1 commit

  • Make some functions static to get rid of the following sparse warnings:

    arch/arm/mach-omap1/mcbsp.c:177:12: warning: symbol 'omap1_mcbsp_init' was not declared. Should it be static?
    arch/arm/mach-omap1/mux.c:346:22: warning: symbol 'omap1_cfg_reg' was not declared. Should it be static?
    arch/arm/plat-omap/dma.c:177:5: warning: symbol 'omap_dma_in_1510_mode' was not declared. Should it be static?
    arch/arm/plat-omap/sram.c:273:12: warning: symbol 'omap1_sram_init' was not declared. Should it be static?

    Signed-off-by: Aaro Koskinen
    Signed-off-by: Tony Lindgren

    Aaro Koskinen
     

02 Aug, 2010

2 commits


05 Jul, 2010

1 commit


09 Jan, 2010

1 commit


12 Dec, 2009

2 commits


23 Nov, 2009

1 commit

  • The MMC mux pins normally used by omap chips in devices.c
    are different from what is needed by omap7xx chips. This
    change adds a conditional around the mux setup code to
    enable the correct mux pins.

    The omap730 and omap850 both use a different clock for the "fck"
    clock of the MMC interface than other omap processors based on the
    SOFT_REQ_REG, pin 12. The "ick" clock is the same as that used
    by other omap processors.

    * Added the missing clock definition as mmc3_ck to clock.h
    * Added the clock definition to omap_clks in clock.c
    * Added CK_7XX to the mmci-omap.0 "ick" clock already in clock.c

    With these changes, it is now possible to initialize and use MMC
    cards with omap730 and omap850 devices.

    Signed-off-by: Cory Maccarrone
    Signed-off-by: Tony Lindgren

    Cory Maccarrone
     

21 Oct, 2009

1 commit

  • Move the remaining headers under plat-omap/include/mach
    to plat-omap/include/plat. Also search and replace the
    files using these headers to include using the right path.

    This was done with:

    #!/bin/bash
    mach_dir_old="arch/arm/plat-omap/include/mach"
    plat_dir_new="arch/arm/plat-omap/include/plat"
    headers=$(cd $mach_dir_old && ls *.h)
    omap_dirs="arch/arm/*omap*/ \
    drivers/video/omap \
    sound/soc/omap"
    other_files="drivers/leds/leds-ams-delta.c \
    drivers/mfd/menelaus.c \
    drivers/mfd/twl4030-core.c \
    drivers/mtd/nand/ams-delta.c"

    for header in $headers; do
    old="#include

    Tony Lindgren
     

08 Oct, 2009

2 commits


24 Mar, 2009

1 commit


06 Sep, 2008

1 commit


07 Aug, 2008

1 commit


15 Apr, 2008

3 commits


21 Sep, 2007

1 commit


25 Sep, 2006

1 commit


01 Jul, 2006

1 commit


03 Apr, 2006

1 commit


10 Nov, 2005

1 commit

  • Patch from Tony Lindgren

    This patch syncs the mainline kernel with linux-omap tree.
    The highlights of the patch are:

    - Omap1 serial pport and framebuffer init updates by Imre Deak

    - Add support for omap310 processor and Palm Tungsten E PDA
    by Laurent Gonzales, Romain Goyet, et al. Omap310 and
    omap1510 processors are now handled as omap15xx.

    - Omap1 specific changes to shared omap clock framework
    by Tony Lindgren

    - Omap1 specific changes to shared omap pin mux framework
    by Tony Lindgren

    - Other misc fixes, such as update memory timings for smc91x,
    omap1 specific device initialization etc.

    Signed-off-by: Tony Lindgren
    Signed-off-by: Russell King

    Tony Lindgren