checkpatch: warning - spacing

Change-Id: Ia63d6c9d8d3c1bd9c540a039263cb8507af82b1e
Signed-off-by: Dan Kalowsky <daniel.kalowsky@intel.com>
This commit is contained in:
Dan Kalowsky 2015-10-23 10:33:46 -07:00 committed by Anas Nashif
commit 2a57d02400
9 changed files with 19 additions and 19 deletions

View file

@ -53,7 +53,7 @@ struct net_driver {
size_t head_reserve;
/** Open the net transport */
int (*open) (void);
int (*open)(void);
/** Send data to net. The send() function should return:
* 0 : If packet could not be sent. In this case buf should
@ -64,7 +64,7 @@ struct net_driver {
* <0: If there is an error, the buf should not be released by
* send() function.
*/
int (*send) (struct net_buf *buf);
int (*send)(struct net_buf *buf);
};
/**