21 Dec, 2010

2 commits


18 Oct, 2010

1 commit


01 May, 2010

1 commit


14 Dec, 2009

1 commit

  • Fix:

    arch/arm/mach-sa1100/generic.c:117: error: redefinition of 'cpufreq_get'
    include/linux/cpufreq.h:299: error: previous definition of 'cpufreq_get' was here

    cpufreq_get() is used on these platforms to tell drivers what the CPU
    frequency is, and therefore the bus frequency - which is critical for
    setting the PCMCIA and LCD timings. Adding ifdefs to these drivers to
    select cpufreq_get() or some other interface adds confusion. Making
    these drivers use some other interface for the normal paths and cpufreq
    stuff for the cpufreq notifier is insane as well.

    (Why x86 can't provide a version of cpufreq_get() which returns the
    CPU frequency when CPUFREQ is disabled is beyond me, rather than
    requiring a dummy zero-returning cpufreq_get(). Especially as they
    do:

    unsigned long khz = cpufreq_get(cpu);
    if (!khz)
    khz = tsc_khz;

    In other words, if CPUFREQ is disabled, get it from tsc_khz - why
    not provide a dummy cpufreq_get() which returns tsc_khz?)

    Signed-off-by: Russell King

    Russell King
     

07 Dec, 2009

2 commits


29 Sep, 2009

1 commit


16 Mar, 2009

1 commit


22 Feb, 2009

1 commit


21 Jul, 2007

1 commit

  • These patches add full SSP/MCU support for the HP Jornada 720
    machine. Its needed to handle keyboard, touchscreen, battery
    and backlight/lcd.

    The main driver exports functions and the header file exports
    the command values. When talking to the MCU the general procedure
    is to start MCU, send command (using ssp_inout(command)), the
    proper reply is always TXDUMMY. After receiving TXDUMMY you can
    send the value you wish pushed (for example brightness level).
    End with ssp_end() so the spinlock gets unlocked.

    Drivers using this havent been implemented yet, but will shortly.

    Signed-off-by: Kristoffer Ericson
    Signed-off-by: Russell King

    Kristoffer Ericson
     

27 Mar, 2006

1 commit


10 Jun, 2005

1 commit


17 Apr, 2005

1 commit

  • Initial git repository build. I'm not bothering with the full history,
    even though we have it. We can create a separate "historical" git
    archive of that later if we want to, and in the meantime it's about
    3.2GB when imported into git - space that would just make the early
    git days unnecessarily complicated, when we don't have a lot of good
    infrastructure for it.

    Let it rip!

    Linus Torvalds