2.4.36-stable kernel tree
リビジョン | a85214606041127f47841f8ebeda9d5ad096dc1a (tree) |
---|---|
日時 | 2007-02-25 16:41:30 |
作者 | Mariusz Kozlowski <m.kozlowski@tuxl...> |
コミッター | Willy Tarreau |
[PATCH] arm sa1100 parenthesis fix
Hello,
This patch fixes parenthesis stuff.
Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>
@@ -98,7 +98,7 @@ | ||
98 | 98 | #define SMCR_ColAdrBits( x ) /* col. addr bits 8..11 */ \ |
99 | 99 | (( (x) - 8 ) << FShft (SMCR_DCAC)) |
100 | 100 | #define SMCR_RowAdrBits( x ) /* row addr bits 9..12 */\ |
101 | - (( (x) - 9 ) << FShft (SMCR_DRAC) | |
101 | + (( (x) - 9 ) << FShft (SMCR_DRAC)) | |
102 | 102 | |
103 | 103 | #define SNPR_VFBstart Fld(12,0) /* Video frame buffer addr */ |
104 | 104 | #define SNPR_VFBsize Fld(11,12) /* Video frame buffer size */ |
@@ -386,7 +386,7 @@ | ||
386 | 386 | #define VgaStatus (*((volatile Word *) SA1101_p2v (_VgaStatus))) |
387 | 387 | #define VgaInterruptMask (*((volatile Word *) SA1101_p2v (_VgaInterruptMask))) |
388 | 388 | #define VgaPalette (*((volatile Word *) SA1101_p2v (_VgaPalette))) |
389 | -#define DacControl (*((volatile Word *) SA1101_p2v (_DacControl)) | |
389 | +#define DacControl (*((volatile Word *) SA1101_p2v (_DacControl))) | |
390 | 390 | #define VgaTest (*((volatile Word *) SA1101_p2v (_VgaTest))) |
391 | 391 | |
392 | 392 | #define VideoControl_VgaEn 0x00000000 |