2.4.36-stable kernel tree
Revision | be54807b6a22e3df1c5621af0b9ac6e3bd44015a (tree) |
---|---|
Zeit | 2007-02-25 16:41:28 |
Autor | Mariusz Kozlowski <m.kozlowski@tuxl...> |
Commiter | Willy Tarreau |
[PATCH] scsi 53c7xx parenthesis fix
Hello,
Tis patch removes an extra parenthesis in abort_connected() code.
Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
@@ -4409,7 +4409,7 @@ abort_connected (struct Scsi_Host *host) { | ||
4409 | 4409 | * account the current synchronous offset) |
4410 | 4410 | */ |
4411 | 4411 | |
4412 | - sstat = (NCR53c8x0_read8 (SSTAT2_REG); | |
4412 | + sstat = NCR53c8x0_read8 (SSTAT2_REG); | |
4413 | 4413 | offset = OFFSET (sstat & SSTAT2_FF_MASK) >> SSTAT2_FF_SHIFT; |
4414 | 4414 | phase = sstat & SSTAT2_PHASE_MASK; |
4415 | 4415 |