diff options
author | Jarod Wilson <jwilson@redhat.com> | 2008-01-23 16:05:45 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2008-01-30 16:22:28 -0500 |
commit | 8f9f963e5d9853dbc5fa5091f15ae64f423d3d89 (patch) | |
tree | 7b12f078f358d88e846e9e6e8e9b271d1bcb3db5 /drivers/firewire | |
parent | f8d2dc39389d6ccc0def290dc4b7eb71d68645a2 (diff) |
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/firewire')
-rw-r--r-- | drivers/firewire/fw-transaction.c | 2 |
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, | |||
153 | int ext_tcode; | 153 | int ext_tcode; |
154 | 154 | ||
155 | if (tcode > 0x10) { | 155 | if (tcode > 0x10) { |
156 | ext_tcode = tcode - 0x10; | 156 | ext_tcode = tcode & ~0x10; |
157 | tcode = TCODE_LOCK_REQUEST; | 157 | tcode = TCODE_LOCK_REQUEST; |
158 | } else | 158 | } else |
159 | ext_tcode = 0; | 159 | ext_tcode = 0; |