1. 15 7月, 2016 13 次提交
  2. 14 7月, 2016 15 次提交
  3. 13 7月, 2016 10 次提交
  4. 12 7月, 2016 2 次提交
    • W
      mrf24j40: avoid uninitialized byte in SPI transfer to radio. · 3faf5643
      Walter Mack 提交于
      isr function issues SPI read command to mrf to obtain INTSTAT.
      SPI transfer is 2 bytes, but value of 2nd byte is not defined.
      This had the effect that only the first ISR worked as intended. The
      second ISR read incorrect INTSTAT values. Observed on Raspberry PI B+.
      Signed-off-by: NWalter Mack <wmack@componentsw.com>
      Signed-off-by: NMarcel Holtmann <marcel@holtmann.org>
      3faf5643
    • P
      ipv4: af_inet: make it explicitly non-modular · d3fc0353
      Paul Gortmaker 提交于
      The Makefile controlling compilation of this file is obj-y,
      meaning that it currently is never being built as a module.
      
      Since MODULE_ALIAS is a no-op for non-modular code, we can simply
      remove the MODULE_ALIAS_NETPROTO variant used here.
      
      We replace module.h with kmod.h since the file does make use of
      request_module() in order to load other modules from here.
      
      We don't have to worry about init.h coming in via the removed
      module.h since the file explicitly includes init.h already.
      
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
      Cc: James Morris <jmorris@namei.org>
      Cc: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
      Cc: Patrick McHardy <kaber@trash.net>
      Cc: netdev@vger.kernel.org
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      d3fc0353