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/btuart_cs.c | |
parent | 1d609dd32cd209f4643c7fd450f19d114cec0de7 (diff) | |
download | op-kernel-dev-d98422cb6619408f1779457fefc5da983fc6bc3b.zip op-kernel-dev-d98422cb6619408f1779457fefc5da983fc6bc3b.tar.gz |
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/btuart_cs.c')
-rw-r--r-- | drivers/bluetooth/btuart_cs.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/bluetooth/btuart_cs.c b/drivers/bluetooth/btuart_cs.c index 7df79bb..310e9c2 100644 --- a/drivers/bluetooth/btuart_cs.c +++ b/drivers/bluetooth/btuart_cs.c @@ -614,14 +614,16 @@ static int btuart_config(struct pcmcia_device *link) int try; /* First pass: look for a config entry that looks normal. - Two tries: without IO aliases, then with aliases */ + * Two tries: without IO aliases, then with aliases + */ for (try = 0; try < 2; try++) if (!pcmcia_loop_config(link, btuart_check_config, &try)) goto found_port; /* Second pass: try to find an entry that isn't picky about - its base address, then try to grab any standard serial port - address, and finally try to get any free port. */ + * its base address, then try to grab any standard serial port + * address, and finally try to get any free port. + */ if (!pcmcia_loop_config(link, btuart_check_config_notpicky, NULL)) goto found_port; |