diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-02-13 15:03:16 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-13 16:21:18 -0800 |
commit | b5606c2d4447e80b1d72406af4e78af1eda611d4 (patch) | |
tree | ebdaa1a0aae4279b84af82651c16a8777f76bfe4 /net/bluetooth/rfcomm/core.c | |
parent | fbf6bfca76d50abef478ba902b8597ecbadfd390 (diff) | |
download | kernel_samsung_espresso10-b5606c2d4447e80b1d72406af4e78af1eda611d4.zip kernel_samsung_espresso10-b5606c2d4447e80b1d72406af4e78af1eda611d4.tar.gz kernel_samsung_espresso10-b5606c2d4447e80b1d72406af4e78af1eda611d4.tar.bz2 |
remove final fastcall users
fastcall always expands to empty, remove it.
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'net/bluetooth/rfcomm/core.c')
-rw-r--r-- | net/bluetooth/rfcomm/core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c index d3e4e18..0c2c937 100644 --- a/net/bluetooth/rfcomm/core.c +++ b/net/bluetooth/rfcomm/core.c @@ -465,7 +465,7 @@ int rfcomm_dlc_send(struct rfcomm_dlc *d, struct sk_buff *skb) return len; } -void fastcall __rfcomm_dlc_throttle(struct rfcomm_dlc *d) +void __rfcomm_dlc_throttle(struct rfcomm_dlc *d) { BT_DBG("dlc %p state %ld", d, d->state); @@ -476,7 +476,7 @@ void fastcall __rfcomm_dlc_throttle(struct rfcomm_dlc *d) rfcomm_schedule(RFCOMM_SCHED_TX); } -void fastcall __rfcomm_dlc_unthrottle(struct rfcomm_dlc *d) +void __rfcomm_dlc_unthrottle(struct rfcomm_dlc *d) { BT_DBG("dlc %p state %ld", d, d->state); |