1. 14 Mar, 2015 7 commits
  2. 13 Mar, 2015 11 commits
  3. 12 Mar, 2015 1 commit
  4. 11 Mar, 2015 4 commits
  5. 10 Mar, 2015 2 commits
  6. 07 Mar, 2015 1 commit
    • Alexander Aring's avatar
      Bluetooth: fix sco_exit compile warning · 0402d9f2
      Alexander Aring authored
      While compiling the following warning occurs:
      
      WARNING: net/built-in.o(.init.text+0x602c): Section mismatch in
      reference from the function bt_init() to the function
      .exit.text:sco_exit()
      The function __init bt_init() references
      a function __exit sco_exit().
      This is often seen when error handling in the init function
      uses functionality in the exit path.
      The fix is often to remove the __exit annotation of
      sco_exit() so it may be used outside an exit section.
      
      Since commit 6d785aa3 ("Bluetooth:
      Convert mgmt to use HCI chan registration API") the function "sco_exit"
      is used inside of function "bt_init". The suggested solution by remove
      the __exit annotation solved this issue.
      Signed-off-by: default avatarAlexander Aring <alex.aring@gmail.com>
      Signed-off-by: default avatarJohan Hedberg <johan.hedberg@intel.com>
      0402d9f2
  7. 06 Mar, 2015 8 commits
  8. 05 Mar, 2015 3 commits
  9. 03 Mar, 2015 3 commits