“085028ce3bf7136c5ab2eeb8bf012024d88905c8”上不存在“drivers/gpu/drm/nouveau/nouveau_hwmon.c”
  1. 27 5月, 2013 3 次提交
  2. 10 5月, 2013 1 次提交
  3. 07 5月, 2013 1 次提交
  4. 30 4月, 2013 2 次提交
  5. 24 4月, 2013 1 次提交
  6. 19 4月, 2013 1 次提交
    • A
      mmc: sdhci-s3c: remove platform dependencies · cc014f3e
      Arnd Bergmann 提交于
      plat/regs-sdhci.h is not used anywhere but in the sdhci-s3c
      driver, so it can become a local file there and all other
      inclusions removed.
      
      plat/sdhci.h is used only to define the platform devices,
      and with the exception of the platform_data structure not
      needed by the driver, so we can split out the platform_data
      definition instead and leave the rest to platform code.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Acked-by: NChris Ball <cjb@laptop.org>
      cc014f3e
  7. 15 4月, 2013 1 次提交
  8. 13 4月, 2013 14 次提交
  9. 09 4月, 2013 1 次提交
    • T
      mmc: atmel-mci: pio hang on block errors · bdbc5d0c
      Terry Barnaby 提交于
      The driver is doing, by default, multi-block reads. When a block error
      occurs, card/block.c instigates a single block read: "mmcblk0: retrying
      using single block read".  It leaves the sg chain intact and just changes
      the length attribute for the first sg entry and the overall sg_len
      parameter.  When atmci_read_data_pio is called to read the single block
      of data it ignores the sg_len and expects to read more than 512 bytes as
      it sees there are multiple items in the sg list. No more data comes as
      the controller has only been commanded to get one block.
      Signed-off-by: NTerry Barnaby <terry@beam.ltd.uk>
      Acked-by: NLudovic Desroches <ludovic.desroches@atmel.com>
      Cc: stable <stable@vger.kernel.org> # 3.2+
      Signed-off-by: NChris Ball <cjb@laptop.org>
      bdbc5d0c
  10. 05 4月, 2013 1 次提交
  11. 04 4月, 2013 11 次提交
  12. 03 4月, 2013 1 次提交
  13. 23 3月, 2013 2 次提交
    • T
      mmc: mvsdio: use dev_*() API instead of pr_*() API · e573d698
      Thomas Petazzoni 提交于
      The mvsdio driver was already using some dev_*() functions to print
      some messages, but still using pr_*() functions for some others. This
      patch converts all messages to use dev_*() functions.
      
      Many of the pr_*() function calls were printing the output of
      mmc_hostname() to preprend the message with an identifier for the
      device. Since the dev_*() functions do that automatically, this patch
      also gets rid of those string prefixes.
      Signed-off-by: NThomas Petazzoni <thomas.petazzoni@free-electrons.com>
      Signed-off-by: NChris Ball <cjb@laptop.org>
      e573d698
    • T
      mmc: mvsdio: fix non-DT probing of GPIOs · 5e81441e
      Thomas Petazzoni 提交于
      Ralph Droms <rdroms@gmail.com> reported that 3.9-rc was breaking the
      SDIO interface on his Sheevaplug platform, and that the recent changes
      to the mvsdio driver are responsible for this breakage. Precisely, the
      regression has been introduced by 07728b77 (mmc: mvsdio: use
      slot-gpio for card detect gpio).
      
      After investigation, is turns out that the Sheevaplug does not have
      any "card detect" GPIO, and the Sheevaplug has not been converted to
      the Device Tree. Therefore, the Sheevaplug board code does not define
      a value for the .gpio_card_detect field of the mvsdio_platform_data
      structure, which means that its value is 0. Unfortunately,
      gpio_is_valid() considers 0 as a valid GPIO, and therefore calls
      mmc_gpio_request_cd(), which fails and makes the entire probing of the
      driver fail.
      
      In fact, in the previous mvsdio code, before the Device Tree binding
      was introduced, 0 was not considered as a valid GPIO. Therefore, this
      fix revert back to this behavior in the non-DT case, by setting the
      gpio_card_detect and gpio_write_protect local variables to -EINVAL
      when the corresponding fields of the mvsdio_platform_data structure
      are set to zero (i.e, left undefined). Of course, it prevents to use
      GPIO 0 as a card detect or write protect GPIO, but it was a defiency
      of the previous non-DT code, and the fix moving forward is to convert
      platforms to the Device Tree.
      
      The problem has been reproduced successfully on the Kirkwood-based
      Marvell DB-88F6281-BP Development Board (that doesn't use the Device
      Tree) and the fix has proven to work properly, after of course
      removing the gpio_card_detect field of the mvsdio_platform_data
      instance for this board.
      Reported-by: NRalph Droms <rdroms@gmail.com>
      Tested-by: NRalph Droms <rdroms@gmail.com>
      Signed-off-by: NThomas Petazzoni <thomas.petazzoni@free-electrons.com>
      Signed-off-by: NChris Ball <cjb@laptop.org>
      5e81441e