• R/O
  • HTTP
  • SSH
  • HTTPS

linux-2.4.36: コミット

2.4.36-stable kernel tree


コミットメタ情報

リビジョン9f7ae12dbd934d2c99c89aa49736c5227722f861 (tree)
日時2007-02-25 16:41:28
作者Mariusz Kozlowski <m.kozlowski@tuxl...>
コミッターWilly Tarreau

ログメッセージ

[PATCH] scsi 53c7,8xx parenthesis fix

Hello,

This patch removes an extra parenthesis in debugger_fn_bs() code.

Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>

drivers/scsi/53c7,8xx.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

変更サマリ

差分

--- a/drivers/scsi/53c7,8xx.c
+++ b/drivers/scsi/53c7,8xx.c
@@ -3197,7 +3197,7 @@ debugger_fn_bs (struct Scsi_Host *host, struct debugger_token *token,
31973197
31983198 bp->address = (u32 *) args[0];
31993199 memcpy ((void *) bp->old_instruction, (void *) bp->address, 8);
3200- bp->old_size = (((bp->old_instruction[0] >> 24) & DCMD_TYPE_MASK) ==
3200+ bp->old_size = ((bp->old_instruction[0] >> 24) & DCMD_TYPE_MASK) ==
32013201 DCMD_TYPE_MMI ? 3 : 2;
32023202 bp->next = hostdata->breakpoints;
32033203 hostdata->breakpoints = bp->next;
旧リポジトリブラウザで表示