Fix checkpatch issue - WARNING:SPACING

This commit fixes the issue marked as SPACING by the checkpatch script
deleting the whitespaces between the function name and the open parenthesis.

Change-Id: I972b1646904bf6e1131263f94ab5024a528ae07d
Signed-off-by: Yonattan Louise <yonattan.a.louise.mendoza@intel.com>
This commit is contained in:
Yonattan Louise 2015-05-12 10:43:08 -05:00 committed by Anas Nashif
commit d133f9661d
58 changed files with 298 additions and 298 deletions

View file

@ -65,10 +65,10 @@ struct bt_driver {
size_t head_reserve;
/* Open the HCI transport */
int (*open) (void);
int (*open)(void);
/* Send data to HCI */
int (*send) (struct bt_buf *buf);
int (*send)(struct bt_buf *buf);
};
/* Register a new HCI driver to the Bluetooth stack */