Bluetooth: Fix compiler warning with selftest duration calculation
authorMarcel Holtmann <marcel@holtmann.org>
Fri, 6 Oct 2017 18:42:45 +0000 (20:42 +0200)
committerJohan Hedberg <johan.hedberg@intel.com>
Fri, 6 Oct 2017 18:49:13 +0000 (21:49 +0300)
commitb49ef29d72bd2975b8b2cc84b1fa6b40aa2edd5f
tree0da7fea6c4426a7ca307cb59ed961074c7b2b6e8
parent0435605289298a7311f78d02eb6a015cae7dbaf7
Bluetooth: Fix compiler warning with selftest duration calculation

  CC      net/bluetooth/selftest.o
net/bluetooth/selftest.c: In function ‘bt_selftest_init’:
net/bluetooth/selftest.c:246:3: warning: ‘duration’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   snprintf(test_ecdh_buffer, sizeof(test_ecdh_buffer),
   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
     "PASS (%llu usecs)\n", duration);
     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
net/bluetooth/selftest.c:203:21: note: ‘duration’ was declared here
  unsigned long long duration;
                     ^~~~~~~~

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
net/bluetooth/selftest.c