aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJarod Wilson <jwilson@redhat.com>2008-01-23 16:05:45 -0500
committerStefan Richter <stefanr@s5r6.in-berlin.de>2008-01-30 22:22:28 +0100
commit8f9f963e5d9853dbc5fa5091f15ae64f423d3d89 (patch)
tree7b12f078f358d88e846e9e6e8e9b271d1bcb3db5 /drivers
parentfirewire: fw-core: react on bus resets while the config ROM is being fetched (diff)
downloadlinux-dev-8f9f963e5d9853dbc5fa5091f15ae64f423d3d89.tar.xz
linux-dev-8f9f963e5d9853dbc5fa5091f15ae64f423d3d89.zip
firewire: replace subtraction with bitwise and
Replace an unnecessary subtraction with a bitwise AND when determining the value of ext_tcode in fw_fill_transaction() to save a cpu cycle or two in a somewhat critical path. Signed-off-by: Jarod Wilson <jwilson@redhat.com> Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/firewire/fw-transaction.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firewire/fw-transaction.c b/drivers/firewire/fw-transaction.c
index 8018c3b9df0f..7fcc59dedf08 100644
--- a/drivers/firewire/fw-transaction.c
+++ b/drivers/firewire/fw-transaction.c
@@ -153,7 +153,7 @@ fw_fill_request(struct fw_packet *packet, int tcode, int tlabel,
int ext_tcode;
if (tcode > 0x10) {
- ext_tcode = tcode - 0x10;
+ ext_tcode = tcode & ~0x10;
tcode = TCODE_LOCK_REQUEST;
} else
ext_tcode = 0;