mirror of
https://github.com/torvalds/linux.git
synced 2026-04-21 00:04:01 -04:00
bluetooth: Remove extern from function prototypes
There are a mix of function prototypes with and without extern in the kernel sources. Standardize on not using extern for function prototypes. Function prototypes don't need to be written with extern. extern is assumed by the compiler. Its use is as unnecessary as using auto to declare automatic/local variables in a block. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
d511337a1e
commit
e74e58f8d2
@@ -256,8 +256,8 @@ static inline void rfcomm_dlc_put(struct rfcomm_dlc *d)
|
||||
rfcomm_dlc_free(d);
|
||||
}
|
||||
|
||||
extern void __rfcomm_dlc_throttle(struct rfcomm_dlc *d);
|
||||
extern void __rfcomm_dlc_unthrottle(struct rfcomm_dlc *d);
|
||||
void __rfcomm_dlc_throttle(struct rfcomm_dlc *d);
|
||||
void __rfcomm_dlc_unthrottle(struct rfcomm_dlc *d);
|
||||
|
||||
static inline void rfcomm_dlc_throttle(struct rfcomm_dlc *d)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user