aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-02-13 18:03:16 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-02-13 19:21:18 -0500
commitb5606c2d4447e80b1d72406af4e78af1eda611d4 (patch)
treeebdaa1a0aae4279b84af82651c16a8777f76bfe4 /net/bluetooth
parentfbf6bfca76d50abef478ba902b8597ecbadfd390 (diff)
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')
-rw-r--r--net/bluetooth/rfcomm/core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c
index d3e4e1877e6a..0c2c93735e93 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)
465 return len; 465 return len;
466} 466}
467 467
468void fastcall __rfcomm_dlc_throttle(struct rfcomm_dlc *d) 468void __rfcomm_dlc_throttle(struct rfcomm_dlc *d)
469{ 469{
470 BT_DBG("dlc %p state %ld", d, d->state); 470 BT_DBG("dlc %p state %ld", d, d->state);
471 471
@@ -476,7 +476,7 @@ void fastcall __rfcomm_dlc_throttle(struct rfcomm_dlc *d)
476 rfcomm_schedule(RFCOMM_SCHED_TX); 476 rfcomm_schedule(RFCOMM_SCHED_TX);
477} 477}
478 478
479void fastcall __rfcomm_dlc_unthrottle(struct rfcomm_dlc *d) 479void __rfcomm_dlc_unthrottle(struct rfcomm_dlc *d)
480{ 480{
481 BT_DBG("dlc %p state %ld", d, d->state); 481 BT_DBG("dlc %p state %ld", d, d->state);
482 482