26 Sep, 2006

1 commit


03 Jul, 2006

1 commit


01 Jul, 2006

1 commit


20 May, 2006

1 commit


05 May, 2006

1 commit


29 Mar, 2006

1 commit


26 Mar, 2006

1 commit

  • MODULE_PARM was actually breaking: recent gcc version optimize them out as
    unused. It's time to replace the last users, which are generally in the
    most unloved drivers anyway.

    Signed-off-by: Rusty Russell
    Signed-off-by: Andrew Morton
    Signed-off-by: Linus Torvalds

    Rusty Russell
     

05 Mar, 2006

3 commits

  • Fix a trivial compilation warning:

    CC drivers/mmc/au1xmmc.o
    drivers/mmc/au1xmmc.c: In function ‘au1xmmc_dma_callback’:
    drivers/mmc/au1xmmc.c:743: warning: unused variable ‘status’

    Signed-off-by: Martin Michlmayr
    Acked-by: Martin Michlmayr
    Signed-off-by: Russell King

    Martin Michlmayr
     
  • drivers/mmc/au1xmmc.c doesn't compile because commit
    e92251762d02a46177d4105d1744041e3f8bc465 introduced a typo and passes
    the wrong argument to the mmc_resp_type macro.

    Error because of the typo:

    CC drivers/mmc/au1xmmc.o
    drivers/mmc/au1xmmc.c: In function ‘au1xmmc_send_command’:
    drivers/mmc/au1xmmc.c:197: warning: implicit declaration of function ‘mmc_rsp_type’
    ...
    LD .tmp_vmlinux1
    drivers/built-in.o: In function `au1xmmc_request':au1xmmc.c:(.text+0x89504): undefined reference to `mmc_rsp_type'
    :au1xmmc.c:(.text+0x8968c): undefined reference to `mmc_rsp_type'
    make: *** [.tmp_vmlinux1] Error 1

    Error because of the wrong argument:

    CC drivers/mmc/au1xmmc.o
    drivers/mmc/au1xmmc.c: In function ‘au1xmmc_send_command’:
    drivers/mmc/au1xmmc.c:197: error: invalid type argument of ‘->’

    Signed-off-by: Martin Michlmayr
    Acked-by: Jordan Crouse
    Signed-off-by: Russell King

    Martin Michlmayr
     
  • drivers/mmc/au1xmmc.c currently doesn't compile; it needs to be
    converted to use platform_driver. I cannot test this change because
    of lack of hardware but I followed the drivers this one is based on,
    and the code is certainly not worse than before.

    drivers/mmc/au1xmmc.c: At top level:
    drivers/mmc/au1xmmc.c:1002: error: ‘platform_bus_type’ undeclared here (not in a function)
    make[2]: *** [drivers/mmc/au1xmmc.o] Error 1

    Signed-off-by: Martin Michlmayr
    Acked-by: Jordan Crouse
    Signed-off-by: Russell King

    Martin Michlmayr
     

02 Feb, 2006

1 commit


30 Oct, 2005

1 commit