diff options
author | Derek Robson <robsonde@gmail.com> | 2017-07-22 13:47:07 +1200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2017-07-22 08:39:39 +0200 |
commit | d98422cb6619408f1779457fefc5da983fc6bc3b (patch) | |
tree | 3aa50f9f4fb4bc77dadf2fe17141f6997f372d18 /drivers/bluetooth/btmrvl_sdio.c | |
parent | 1d609dd32cd209f4643c7fd450f19d114cec0de7 (diff) | |
download | linux-d98422cb6619408f1779457fefc5da983fc6bc3b.tar.bz2 |
Bluetooth: Style fix - align block comments
Fixed alignment of all block comments.
Found using checkpatch
Signed-off-by: Derek Robson <robsonde@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth/btmrvl_sdio.c')
-rw-r--r-- | drivers/bluetooth/btmrvl_sdio.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/bluetooth/btmrvl_sdio.c b/drivers/bluetooth/btmrvl_sdio.c index eb794f08b238..03341ce98c32 100644 --- a/drivers/bluetooth/btmrvl_sdio.c +++ b/drivers/bluetooth/btmrvl_sdio.c @@ -1455,7 +1455,8 @@ done: fw_dump_ptr = fw_dump_data; /* Dump all the memory data into single file, a userspace script will - be used to split all the memory data to multiple files*/ + * be used to split all the memory data to multiple files + */ BT_INFO("== btmrvl firmware dump to /sys/class/devcoredump start"); for (idx = 0; idx < dump_num; idx++) { struct memory_type_mapping *entry = &mem_type_mapping_tbl[idx]; @@ -1482,7 +1483,8 @@ done: } /* fw_dump_data will be free in device coredump release function - after 5 min*/ + * after 5 min + */ dev_coredumpv(&card->func->dev, fw_dump_data, fw_dump_len, GFP_KERNEL); BT_INFO("== btmrvl firmware dump to /sys/class/devcoredump end"); } |