1. 09 9月, 2015 4 次提交
  2. 05 9月, 2015 5 次提交
  3. 03 9月, 2015 1 次提交
  4. 20 8月, 2015 1 次提交
    • L
      powerpc/hvsi: Fix endianness issues in the HVSI driver · 48079804
      Laurent Dufour 提交于
      This patch fixes several endianness issues detected when running the HVSI
      driver in little endian mode.
      
      These issues are raised in little endian mode because the data exchanged in
      memory between the kernel and the hypervisor has to be in big endian
      format. This exhibits as errors such as:
      
        irq: (null) didn't like hwirq-0x1000a00 to VIRQ16 mapping (rc=-22)
        hvsi_console_init: couldn't create irq mapping for 0x1000a00
      
      The data structures already have endian annotations, and sparse is
      generating numerous warnings based on those. This commit fixes all of
      them.
      Signed-off-by: NLaurent Dufour <ldufour@linux.vnet.ibm.com>
      CC: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      CC: Jiri Slaby <jslaby@suse.cz>
      CC: linuxppc-dev@lists.ozlabs.org
      CC: linux-kernel@vger.kernel.org
      [mpe: Flesh out change log]
      Signed-off-by: NMichael Ellerman <mpe@ellerman.id.au>
      48079804
  5. 15 8月, 2015 14 次提交
  6. 11 8月, 2015 1 次提交
  7. 06 8月, 2015 1 次提交
    • P
      serial: 8250_pci: fix mode after S3/S4 resume for F81504/508/512 · d3159455
      Peter Hung 提交于
      Fix RS232/485 mode incorrect setting after S3/S4 resume for F81504/508/512
      
      We had add RS232/485 RTS control with fecf27a3. But when it
      resume from S3/S4, the mode register 0x40 + 0x08 * idx + 7 will
      rewrite to 0x01 (RS232 mode).
      
      This patch will modify 2 sections.
      
      One is pci_fintek_init(), if it called when first init, it will
      write mode register with 0x01. If it called from S3/S4 resume,
      it's will get the relative port data and pass it to
      pci_fintek_rs485_config() with NULL rs485 parameter.
      
      The another modification is in pci_fintek_rs485_config(). It'll
      re-apply old configuration when the parameter rs485 is NULL.
      Signed-off-by: NPeter Hung <hpeter+linux_kernel@gmail.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      d3159455
  8. 05 8月, 2015 13 次提交