1. 13 12月, 2008 10 次提交
  2. 12 12月, 2008 4 次提交
  3. 11 12月, 2008 12 次提交
  4. 10 12月, 2008 13 次提交
  5. 09 12月, 2008 1 次提交
    • D
      bluetooth: Fix unused var warning properly in rfcomm_sock_ioctl(). · e19caae7
      David S. Miller 提交于
      As Stephen Rothwell points out, we don't want 'sock' here but
      rather we really do want 'sk'.
      
      This local var is protected by all sorts of bluetooth debugging
      kconfig vars, but BT_DBG() is just a straight pr_debug() call
      which is unconditional.
      
      pr_debug() evaluates it's args only if either DEBUG or
      CONFIG_DYNAMIC_PRINTK_DEBUG is defined.
      
      Solving this inside of the BT_DBG() macro is non-trivial since
      it's varargs.  And these ifdefs are ugly.
      
      So, just mark this 'sk' thing __maybe_unused and kill the ifdefs.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      e19caae7