1. 23 1月, 2016 3 次提交
  2. 22 1月, 2016 19 次提交
  3. 21 1月, 2016 15 次提交
  4. 20 1月, 2016 3 次提交
    • G
      irqchip: renesas-h8s: Replace ctrl_outw/ctrl_inw with writew/readw · be133260
      Guenter Roeck 提交于
      Commit 13ae42a3b1c1 ("h8300: Rename ctlr_out/in[bwl] to
      raw_read/write[bwl]") changed the function names, but not all callers,
      resulting in
      
      drivers/irqchip/irq-renesas-h8s.c: In function ‘h8s_disable_irq’:
      drivers/irqchip/irq-renesas-h8s.c:43:9: error:
      	implicit declaration of function ‘ctrl_inw’
      drivers/irqchip/irq-renesas-h8s.c:44:2: error:
      	implicit declaration of function ‘ctrl_outw’
      
      Fixes: 13ae42a3b1c1 ("h8300: Rename ctlr_out/in[bwl] to raw_read/write[bwl]")
      Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
      Signed-off-by: NGuenter Roeck <linux@roeck-us.net>
      be133260
    • S
      mmc: sdio_cis: fix unknown tuple for CISTPL_SDIO_STD · 07cbeea5
      Shawn Lin 提交于
      CISTPL_SDIO_STD(0x91) is a known tuple, but sdio_cis don't define it, so
      we get the warning below while probing several sdio wifi cards.
      
      Refer to SDIO spec, it's not needed to parse the tuple, so this patch make
      it a known one.
      
      [    4.098980] mmc2: queuing unknown CIS tuple 0x91 (3 bytes)
      [    4.099033] mmc2: new ultra high speed SDR104 SDIO card at address 0001
      Signed-off-by: NShawn Lin <shawn.lin@rock-chips.com>
      Signed-off-by: NUlf Hansson <ulf.hansson@linaro.org>
      07cbeea5
    • A
      scsi: qla2xxxx: avoid type mismatch in comparison · fab683eb
      Arnd Bergmann 提交于
      A recent bug fix added code that does
      
              bool logged_out = (status & 0xFFFF);
              if (logged_out == CTIO_PORT_LOGGED_OUT)
      		...
      
      This looks wrong because we are comparing a boolean with an
      integer constant, ang gcc warns about it accordingly:
      
      drivers/scsi/qla2xxx/qla_target.c: In function 'qlt_do_ctio_completion':
      drivers/scsi/qla2xxx/qla_target.c:3587:20: warning: comparison of constant '41' with boolean expression is always false [-Wbool-compare]
              (logged_out == CTIO_PORT_LOGGED_OUT) ?
      
      The correct fix is presumably to make that variable an 'int'.
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Fixes: 71cdc079 ("qla2xxx: Delete session if initiator is gone from FW")
      Signed-off-by: NNicholas Bellinger <nab@linux-iscsi.org>
      fab683eb