1. 29 Nov, 2016 18 commits
  2. 28 Nov, 2016 3 commits
  3. 23 Nov, 2016 1 commit
  4. 22 Nov, 2016 14 commits
  5. 21 Nov, 2016 3 commits
  6. 18 Nov, 2016 1 commit
    • Tobias Klauser's avatar
      block: Change extern inline to static inline · 9a05e754
      Tobias Klauser authored
      With compilers which follow the C99 standard (like modern versions of
      gcc and clang), "extern inline" does the opposite thing from older
      versions of gcc (emits code for an externally linkable version of the
      inline function).
      
      "static inline" does the intended behavior in all cases instead.
      
      Description taken from commit 6d91857d ("staging, rtl8192e,
      LLVMLinux: Change extern inline to static inline").
      
      This also fixes the following GCC warning when building with CONFIG_PM
      disabled:
      
        ./include/linux/blkdev.h:1143:20: warning: no previous prototype for 'blk_set_runtime_active' [-Wmissing-prototypes]
      
      Fixes: d07ab6d1 ("block: Add blk_set_runtime_active()")
      Reviewed-by: default avatarMika Westerberg <mika.westerberg@linux.intel.com>
      Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
      Signed-off-by: default avatarJens Axboe <axboe@fb.com>
      9a05e754