1. 16 Dec, 2014 13 commits
  2. 15 Dec, 2014 22 commits
    • Larry Finger's avatar
      rtlwifi: rtl8192ce: Set fw_ready flag · 9a1dce3a
      Larry Finger authored
      The setting of this flag was missed in previous modifications.
      Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
      Cc: Stable <stable@vger.kernel.org>
      Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
      9a1dce3a
    • Brian Norris's avatar
      brcmsmac: don't leak kernel memory via printk() · 1d240d37
      Brian Norris authored
      Debug code prints the fifo name via custom dev_warn() wrappers. The
      fifo_names array is only non-zero when debugging is manually enabled,
      which is all well and good. However, it's *not* good that this array
      uses zero-length arrays in the non-debug case, and so it doesn't
      actually have any memory allocated to it. This means that as far as we
      know, fifo_names[i] actually points to garbage memory.
      
      I've seen this in my log:
      
      [ 4601.205511] brcmsmac bcma0:1: wl0: brcms_c_d11hdrs_mac80211: �GeL txop exceeded phylen 137/256 dur 1602/1504
      
      So let's give this array space enough to fill it with a NULL byte.
      Signed-off-by: default avatarBrian Norris <computersforpeace@gmail.com>
      Cc: Brett Rudley <brudley@broadcom.com>
      Cc: Arend van Spriel <arend@broadcom.com>
      Cc: "Franky (Zhenhui) Lin" <frankyl@broadcom.com>
      Cc: Hante Meuleman <meuleman@broadcom.com>
      Cc: "John W. Linville" <linville@tuxdriver.com>
      Cc: linux-wireless@vger.kernel.org
      Cc: brcm80211-dev-list@broadcom.com
      Cc: netdev@vger.kernel.org
      Acked-by: default avatarArend van Spriel <arend@broadcom.com>
      Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
      1d240d37
    • Wei Yongjun's avatar
      rtlwifi: rtl8192cu: Fix sparse non static symbol warning · 8670d4d6
      Wei Yongjun authored
      Fixes the following sparse warning:
      
      drivers/net/wireless/rtlwifi/rtl8192cu/hw.c:1595:6: warning:
       symbol 'usb_cmd_send_packet' was not declared. Should it be static?
      Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
      Acked-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
      Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
      8670d4d6
    • Julia Lawall's avatar
      rtlwifi: rtl8821ae: fix misspelling of current function in string · cf2bcc97
      Julia Lawall authored
      Replace a misspelled function name by %s and then __func__.
      
      8821 was written as 8812.
      
      This was done using Coccinelle, including the use of Levenshtein distance,
      as proposed by Rasmus Villemoes.
      Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
      Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
      cf2bcc97
    • Julia Lawall's avatar
      hostap_cs: fix misspelling of current function in string · 8dce3e6d
      Julia Lawall authored
      Replace a misspelled function name by %s and then __func__.
      
      This was done using Coccinelle, including the use of Levenshtein distance,
      as proposed by Rasmus Villemoes.
      Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
      Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
      8dce3e6d
    • Julia Lawall's avatar
      zd1211rw: fix misspelling of current function in string · da8fbbfd
      Julia Lawall authored
      Replace a misspelled function name by %s and then __func__.
      
      This was done using Coccinelle, including the use of Levenshtein distance,
      as proposed by Rasmus Villemoes.
      Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
      Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
      da8fbbfd
    • John W. Linville's avatar
    • David S. Miller's avatar
      Merge branch 'macb' · d2cdcdf5
      David S. Miller authored
      Cyrille Pitchen says:
      
      ====================
      net/macb: fix multiqueue support patch up
      
      This series of patches is a fixup for the multiqueue support patch.
      
      The first patch fixes a bug introduced by the multiqueue support patch.
      The second one doesn't fix a bug but simplify the source code by removing
      useless calls to devm_free_irq() since we use managed device resources for
      IRQs.
      
      They were applied on the net-next tree and tested with a sama5d36ek board.
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      d2cdcdf5
    • Cyrille Pitchen's avatar
      net/macb: remove useless calls of devm_free_irq() · cf250de0
      Cyrille Pitchen authored
      Inside macb_probe(), when devm_request_irq() fails on queue q, there is no need
      to call devm_free_irq() on queues 0..q-1 because the managed device resources
      are released later when calling free_netdev().
      
      Also removing devm_free_irq() call from macb_remove() for the same reason.
      Signed-off-by: default avatarCyrille Pitchen <cyrille.pitchen@atmel.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      cf250de0
    • Cyrille Pitchen's avatar
      net/macb: fix misplaced call of free_netdev() in macb_remove() · e965be7d
      Cyrille Pitchen authored
      fix a bug introduced by the multiqueue support patch:
      "net/macb: add TX multiqueue support for gem"
      
      the "bp" pointer to the netdev private data was dereferenced and used after the
      associated memory had been freed by calling free_netdev().
      Signed-off-by: default avatarCyrille Pitchen <cyrille.pitchen@atmel.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      e965be7d
    • Geert Uytterhoeven's avatar
      rds: Fix min() warning in rds_message_inc_copy_to_user() · 6ff4a8ad
      Geert Uytterhoeven authored
      net/rds/message.c: In function ‘rds_message_inc_copy_to_user’:
      net/rds/message.c:328: warning: comparison of distinct pointer types lacks a cast
      
      Use min_t(unsigned long, ...) like is done in
      rds_message_copy_from_user().
      Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      6ff4a8ad
    • Geert Uytterhoeven's avatar
      net: stmmac: sti: Fix uninitialized pointer dereference if !OF · 50262c85
      Geert Uytterhoeven authored
      If CONFIG_OF is not set:
      
      drivers/net/ethernet/stmicro/stmmac/dwmac-sti.c: In function ‘sti_dwmac_parse_data’:
      drivers/net/ethernet/stmicro/stmmac/dwmac-sti.c:318: warning: ‘rs’ is used uninitialized in this function
      
      of_property_read_string() will return -ENOSYS in this case, and rs will
      be an uninitialized pointer.
      
      While the fallback clock selection is already selected correctly in this
      case, the string comparisons should be skipped too, else the system will
      crash while dereferencing the uninitialized pointer.
      Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      50262c85
    • Tobias Klauser's avatar
      net: smc91x: Fix build without gpiolib · 372a0730
      Tobias Klauser authored
      If GPIOLIB=n the following build errors occur:
      
      drivers/net/ethernet/smsc/smc91x.c: In function 'try_toggle_control_gpio':
      drivers/net/ethernet/smsc/smc91x.c:2204:2: error: implicit declaration of function 'devm_gpiod_get_index' [-Werror=implicit-function-declaration]
      drivers/net/ethernet/smsc/smc91x.c:2204:7: warning: assignment makes pointer from integer without a cast [enabled by default]
      drivers/net/ethernet/smsc/smc91x.c:2213:2: error: implicit declaration of function 'gpiod_direction_output' [-Werror=implicit-function-declaration]
      drivers/net/ethernet/smsc/smc91x.c:2216:3: error: implicit declaration of function 'devm_gpiod_put' [-Werror=implicit-function-declaration]
      drivers/net/ethernet/smsc/smc91x.c:2222:2: error: implicit declaration of function 'gpiod_set_value_cansleep' [-Werror=implicit-function-declaration]
      
      Fix this by letting the driver depend on GPIOLIB if OF is selected.
      
      Fixes: 7d2911c4 ("net: smc91x: Fix gpios for device tree based booting")
      Cc: Tony Lindgren <tony@atomide.com>
      Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      372a0730
    • Timo Teräs's avatar
      gre: fix the inner mac header in nbma tunnel xmit path · 8a0033a9
      Timo Teräs authored
      The NBMA GRE tunnels temporarily push GRE header that contain the
      per-packet NBMA destination on the skb via header ops early in xmit
      path. It is the later pulled before the real GRE header is constructed.
      
      The inner mac was thus set differently in nbma case: the GRE header
      has been pushed by neighbor layer, and mac header points to beginning
      of the temporary gre header (set by dev_queue_xmit).
      
      Now that the offloads expect mac header to point to the gre payload,
      fix the xmit patch to:
       - pull first the temporary gre header away
       - and reset mac header to point to gre payload
      
      This fixes tso to work again with nbma tunnels.
      
      Fixes: 14051f04 ("gre: Use inner mac length when computing tunnel length")
      Signed-off-by: default avatarTimo Teräs <timo.teras@iki.fi>
      Cc: Tom Herbert <therbert@google.com>
      Cc: Alexander Duyck <alexander.h.duyck@redhat.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      8a0033a9
    • Duan Jiong's avatar
      fib_trie.txt: fix typo · fd223068
      Duan Jiong authored
      Fix the typo, there should be "It".
      On the other hand, fix whitespace errors detected by checkpatch.pl
      Signed-off-by: default avatarDuan Jiong <duanj.fnst@cn.fujitsu.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      fd223068
    • Asaf Vertz's avatar
      cirrus: cs89x0: fix time comparison · 0f9a2a9c
      Asaf Vertz authored
      To be future-proof and for better readability the time comparisons are
      modified to use time_before, time_after, and time_after_eq instead of
      plain, error-prone math.
      Signed-off-by: default avatarAsaf Vertz <asaf.vertz@tandemg.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      0f9a2a9c
    • David S. Miller's avatar
      Merge branch 'mlx4' · c5e44b69
      David S. Miller authored
      Or Gerlitz says:
      
      ====================
      mlx4 driver fixes for 3.19-rc1
      
      Just fixes for two small issues introduced in the 3.19 merge window
      ====================
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      c5e44b69
    • Or Gerlitz's avatar
      net/mlx4_core: Avoid double dumping of the PF device capabilities · c78e25ed
      Or Gerlitz authored
      To support asymmetric EQ allocations, we should query the device
      capabilities prior to enabling SRIOV. As a side effect of adding that,
      we are dumping the PF device capabilities twice. Avoid that by moving
      the printing into a helper function which is called once.
      
      Fixes: 7ae0e400 ('net/mlx4_core: Flexible (asymmetric) allocation of
      		     EQs and MSI-X vectors for PF/VFs')
      Signed-off-by: default avatarOr Gerlitz <ogerlitz@mellanox.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      c78e25ed
    • Matan Barak's avatar
      net/mlx4_core: Fixed memory leak and incorrect refcount in mlx4_load_one · da315679
      Matan Barak authored
      The current mlx4_load_one has a memory leak as it always allocates
      dev_cap, but frees it only on error.
      
      In addition, even if VFs exist when mlx4_load_one is called,
      we still need to notify probed VFs that we're loading (by
      incrementing pf_loading).
      
      Fixes: a0eacca9 ('net/mlx4_core: Refactor mlx4_load_one')
      Signed-off-by: default avatarMatan Barak <matanb@mellanox.com>
      Signed-off-by: default avatarOr Gerlitz <ogerlitz@mellanox.com>
      Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
      da315679
    • Linus Torvalds's avatar
      Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security · 67e2c388
      Linus Torvalds authored
      Pull security layer updates from James Morris:
       "In terms of changes, there's general maintenance to the Smack,
        SELinux, and integrity code.
      
        The IMA code adds a new kconfig option, IMA_APPRAISE_SIGNED_INIT,
        which allows IMA appraisal to require signatures.  Support for reading
        keys from rootfs before init is call is also added"
      
      * 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security: (23 commits)
        selinux: Remove security_ops extern
        security: smack: fix out-of-bounds access in smk_parse_smack()
        VFS: refactor vfs_read()
        ima: require signature based appraisal
        integrity: provide a hook to load keys when rootfs is ready
        ima: load x509 certificate from the kernel
        integrity: provide a function to load x509 certificate from the kernel
        integrity: define a new function integrity_read_file()
        Security: smack: replace kzalloc with kmem_cache for inode_smack
        Smack: Lock mode for the floor and hat labels
        ima: added support for new kernel cmdline parameter ima_template_fmt
        ima: allocate field pointers array on demand in template_desc_init_fields()
        ima: don't allocate a copy of template_fmt in template_desc_init_fields()
        ima: display template format in meas. list if template name length is zero
        ima: added error messages to template-related functions
        ima: use atomic bit operations to protect policy update interface
        ima: ignore empty and with whitespaces policy lines
        ima: no need to allocate entry for comment
        ima: report policy load status
        ima: use path names cache
        ...
      67e2c388
    • Linus Torvalds's avatar
      Merge tag 'char-misc-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc · 6ae840e7
      Linus Torvalds authored
      Pull char/misc driver updates from Greg KH:
       "Here's the big char/misc driver update for 3.19-rc1
      
        Lots of little things all over the place in different drivers, and a
        new subsystem, "coresight" has been added.  Full details are in the
        shortlog"
      
      * tag 'char-misc-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc: (73 commits)
        parport: parport_pc, do not remove parent devices early
        spmi: Remove shutdown/suspend/resume kernel-doc
        carma-fpga-program: drop videobuf dependency
        carma-fpga: drop videobuf dependency
        carma-fpga-program.c: fix compile errors
        i8k: Fix temperature bug handling in i8k_get_temp()
        cxl: Name interrupts in /proc/interrupt
        CXL: Return error to PSL if IRQ demultiplexing fails & print clearer warning
        coresight-replicator: remove .owner field for driver
        coresight: fixed comments in coresight.h
        coresight: fix typo in comment in coresight-priv.h
        coresight: bindings for coresight drivers
        coresight: Adding ABI documentation
        w1: support auto-load of w1_bq27000 module.
        w1: avoid potential u16 overflow
        cn: verify msg->len before making callback
        mei: export fw status registers through sysfs
        mei: read and print all six FW status registers
        mei: txe: add cherrytrail device id
        mei: kill cached host and me csr values
        ...
      6ae840e7
    • Linus Torvalds's avatar
      Merge tag 'driver-core-3.19-rc1' of... · e6b5be2b
      Linus Torvalds authored
      Merge tag 'driver-core-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core
      
      Pull driver core update from Greg KH:
       "Here's the set of driver core patches for 3.19-rc1.
      
        They are dominated by the removal of the .owner field in platform
        drivers.  They touch a lot of files, but they are "simple" changes,
        just removing a line in a structure.
      
        Other than that, a few minor driver core and debugfs changes.  There
        are some ath9k patches coming in through this tree that have been
        acked by the wireless maintainers as they relied on the debugfs
        changes.
      
        Everything has been in linux-next for a while"
      
      * tag 'driver-core-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core: (324 commits)
        Revert "ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries"
        fs: debugfs: add forward declaration for struct device type
        firmware class: Deletion of an unnecessary check before the function call "vunmap"
        firmware loader: fix hung task warning dump
        devcoredump: provide a one-way disable function
        device: Add dev_<level>_once variants
        ath: ath9k: use debugfs_create_devm_seqfile() helper for seq_file entries
        ath: use seq_file api for ath9k debugfs files
        debugfs: add helper function to create device related seq_file
        drivers/base: cacheinfo: remove noisy error boot message
        Revert "core: platform: add warning if driver has no owner"
        drivers: base: support cpu cache information interface to userspace via sysfs
        drivers: base: add cpu_device_create to support per-cpu devices
        topology: replace custom attribute macros with standard DEVICE_ATTR*
        cpumask: factor out show_cpumap into separate helper function
        driver core: Fix unbalanced device reference in drivers_probe
        driver core: fix race with userland in device_add()
        sysfs/kernfs: make read requests on pre-alloc files use the buffer.
        sysfs/kernfs: allow attributes to request write buffer be pre-allocated.
        fs: sysfs: return EGBIG on write if offset is larger than file size
        ...
      e6b5be2b
  3. 14 Dec, 2014 5 commits
    • Linus Torvalds's avatar
      Merge tag 'tty-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty · 37da7bbb
      Linus Torvalds authored
      Pull tty/serial driver updates from Greg KH:
       "Here's the big tty/serial driver update for 3.19-rc1.
      
        There are a number of TTY core changes/fixes in here from Peter Hurley
        that have all been teted in linux-next for a long time now.  There are
        also the normal serial driver updates as well, full details in the
        changelog below"
      
      * tag 'tty-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty: (219 commits)
        serial: pxa: hold port.lock when reporting modem line changes
        tty-hvsi_lib: Deletion of an unnecessary check before the function call "tty_kref_put"
        tty: Deletion of unnecessary checks before two function calls
        n_tty: Fix read_buf race condition, increment read_head after pushing data
        serial: of-serial: add PM suspend/resume support
        Revert "serial: of-serial: add PM suspend/resume support"
        Revert "serial: of-serial: fix up PM ops on no_console_suspend and port type"
        serial: 8250: don't attempt a trylock if in sysrq
        serial: core: Add big-endian iotype
        serial: samsung: use port->fifosize instead of hardcoded values
        serial: samsung: prefer to use fifosize from driver data
        serial: samsung: fix style problems
        serial: samsung: wait for transfer completion before clock disable
        serial: icom: fix error return code
        serial: tegra: clean up tty-flag assignments
        serial: Fix io address assign flow with Fintek PCI-to-UART Product
        serial: mxs-auart: fix tx_empty against shift register
        serial: mxs-auart: fix gpio change detection on interrupt
        serial: mxs-auart: Fix mxs_auart_set_ldisc()
        serial: 8250_dw: Use 64-bit access for OCTEON.
        ...
      37da7bbb
    • Linus Torvalds's avatar
      Merge tag 'usb-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb · e7cf773d
      Linus Torvalds authored
      Pull USB updates from Greg KH:
       "Here's the big set of USB and PHY patches for 3.19-rc1.
      
        The normal churn in the USB gadget area is in here, as well as xhci
        and other individual USB driver updates.  The PHY tree is also in
        here, as there were dependancies on the USB tree.
      
        All of these have been in linux-next"
      
      * tag 'usb-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: (351 commits)
        arm: omap3: twl: remove usb phy init data
        usbip: fix error handling in stub_probe()
        usb: gadget: udc: missing curly braces
        USB: mos7720: delete some unneeded code
        wusb: replace memset by memzero_explicit
        usbip: remove unneeded structure
        usb: xhci: fix comment for PORT_DEV_REMOVE
        xhci: don't use the same variable for stopped and halted rings current TD
        xhci: clear extra bits from slot context when setting max exit latency
        xhci: cleanup finish_td function
        USB: adutux: NULL dereferences on disconnect
        usb: chipidea: fix platform_no_drv_owner.cocci warnings
        usb: chipidea: Fixed a few typos in comments
        Documentation: bindings: add doc for the USB2 ChipIdea USB driver
        usb: chipidea: add a usb2 driver for ci13xxx
        usb: chipidea: fix phy handling
        usb: chipidea: remove duplicate dev_set_drvdata for host_start
        usb: chipidea: parameter 'mode' isn't needed for hw_device_reset
        usb: chipidea: add controller reset API
        usb: chipidea: remove flag CI_HDRC_REQUIRE_TRANSCEIVER
        ...
      e7cf773d
    • Linus Torvalds's avatar
      Merge tag 'squashfs-updates' of git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next · 7a02d089
      Linus Torvalds authored
      Pull squashfs update from Phillip Lougher:
       "These patches optionally add LZ4 compression support to Squashfs.
      
        LZ4 is a lightweight compression algorithm which can be used on
        embedded systems to reduce CPU and memory overhead (in comparison to
        the standard zlib compression).
      
        These patches add the wrapper code to allow Squashfs to use the
        existing LZ4 decompression code, and the necessary configuration
        option"
      
      * tag 'squashfs-updates' of git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next:
        Squashfs: Add LZ4 compression configuration option
        Squashfs: add LZ4 compression support
      7a02d089
    • Linus Torvalds's avatar
      Merge tag 'gpio-v3.19-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio · 980f3c34
      Linus Torvalds authored
      Pull take two of the GPIO updates:
       "Same stuff as last time, now with a fixup patch for the previous
        compile error plus I ran a few extra rounds of compile-testing.
      
        This is the bulk of GPIO changes for the v3.19 series:
      
         - A new API that allows setting more than one GPIO at the time.  This
           is implemented for the new descriptor-based API only and makes it
           possible to e.g. toggle a clock and data line at the same time, if
           the hardware can do this with a single register write.  Both
           consumers and drivers need new calls, and the core will fall back
           to driving individual lines where needed.  Implemented for the
           MPC8xxx driver initially
      
         - Patched the mdio-mux-gpio and the serial mctrl driver that drives
           modems to use the new multiple-setting API to set several signals
           simultaneously
      
         - Get rid of the global GPIO descriptor array, and instead allocate
           descriptors dynamically for each GPIO on a certain GPIO chip.  This
           moves us closer to getting rid of the limitation of using the
           global, static GPIO numberspace
      
         - New driver and device tree bindings for 74xx ICs
      
         - New driver and device tree bindings for the VF610 Vybrid
      
         - Support the RCAR r8a7793 and r8a7794
      
         - Guidelines for GPIO device tree bindings trying to get things a bit
           more strict with the advent of combined device properties
      
         - Suspend/resume support for the MVEBU driver
      
         - A slew of minor fixes and improvements"
      
      * tag 'gpio-v3.19-2' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio: (33 commits)
        gpio: mcp23s08: fix up compilation error
        gpio: pl061: document gpio-ranges property for bindings file
        gpio: pl061: hook request if gpio-ranges avaiable
        gpio: mcp23s08: Add option to configure IRQ output polarity as active high
        gpio: fix deferred probe detection for legacy API
        serial: mctrl_gpio: use gpiod_set_array function
        mdio-mux-gpio: Use GPIO descriptor interface and new gpiod_set_array function
        gpio: remove const modifier from gpiod_get_direction()
        gpio: remove gpio_descs global array
        gpio: mxs: implement get_direction callback
        gpio: em: Use dynamic allocation of GPIOs
        gpio: Check if base is positive before calling gpio_is_valid()
        gpio: mcp23s08: Add simple IRQ support for SPI devices
        gpio: mcp23s08: request a shared interrupt
        gpio: mcp23s08: Do not free unrequested interrupt
        gpio: rcar: Add r8a7793 and r8a7794 support
        gpio-mpc8xxx: add mpc8xxx_gpio_set_multiple function
        gpiolib: allow simultaneous setting of multiple GPIO outputs
        gpio: mvebu: add suspend/resume support
        gpio: gpio-davinci: remove duplicate check on resource
        ..
      980f3c34
    • Linus Torvalds's avatar
      Merge git://git.kvack.org/~bcrl/aio-next · 7d22286f
      Linus Torvalds authored
      Pull aio updates from Benjamin LaHaise.
      
      * git://git.kvack.org/~bcrl/aio-next:
        aio: Skip timer for io_getevents if timeout=0
        aio: Make it possible to remap aio ring
      7d22286f