21 Mar, 2006

1 commit


11 Mar, 2006

1 commit


01 Mar, 2006

1 commit


14 Jan, 2006

1 commit


13 Jan, 2006

3 commits


11 Jan, 2006

1 commit


10 Jan, 2006

2 commits


07 Jan, 2006

1 commit


06 Jan, 2006

20 commits


05 Jan, 2006

1 commit


29 Nov, 2005

1 commit


13 Nov, 2005

2 commits


10 Nov, 2005

3 commits


09 Nov, 2005

2 commits

  • This patch removes almost all inclusions of linux/version.h. The 3
    #defines are unused in most of the touched files.

    A few drivers use the simple KERNEL_VERSION(a,b,c) macro, which is
    unfortunatly in linux/version.h.

    There are also lots of #ifdef for long obsolete kernels, this was not
    touched. In a few places, the linux/version.h include was move to where
    the LINUX_VERSION_CODE was used.

    quilt vi `find * -type f -name "*.[ch]"|xargs grep -El '(UTS_RELEASE|LINUX_VERSION_CODE|KERNEL_VERSION|linux/version.h)'|grep -Ev '(/(boot|coda|drm)/|~$)'`

    search pattern:
    /UTS_RELEASE\|LINUX_VERSION_CODE\|KERNEL_VERSION\|linux\/\(utsname\|version\).h

    Signed-off-by: Olaf Hering
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Olaf Hering
     
  • Patch from Richard Purdie

    The Sharp SL-Cxx00 models have a combined power control for the SD
    and CF slot 0. This patch adds hooks to the scoop driver to allow
    machines to provide a custom control function for this and such a
    function is added for spitz/akita/borzoi.

    It also moves the gpio init code into the machine files as this
    is machine dependent and differs between some models. A couple of
    warnings when compiling for collie are also fixed.

    Signed-off-by: Richard Purdie
    Signed-off-by: Russell King

    Richard Purdie