diff options
author | Sergei Shtylyov <sshtylyov@ru.mvista.com> | 2008-04-30 15:26:28 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-05-12 11:46:54 -0400 |
commit | be1c3c1ed13f31ae8f9d5d043d96d2e56b5ee1d5 (patch) | |
tree | 687af4313c327ce05e4864d76d94ecf342c7331c /include | |
parent | 7916c3548e53bffb0545a1d0dc7fde86d79add92 (diff) |
[MIPS] Pb1100 code style cleanup
Fix several errors and warnings given by checkpatch.pl:
- space between asterisk and variable name;
- use of C99 // comments;
- using simple_strtol() where strict_strtol() could be used.
In addition to these changes, also do the following:
- properly indent the code;
- remove space after the type cast's closing parenthesis;
- replace numeric literals/expressions with the matching macros;
- replace spaces after the macro name with tabs in the #define directives,
and sometimes insert spaces there;
- fix typos/errors, capitalize acronyms, etc. in the comments;
- make the multi-line comment style consistent with the kernel style
elsewhere by adding empty first line;
- update MontaVista copyright;
- remove Pete Popov's old email address...
Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-mips/mach-pb1x00/pb1100.h | 96 |
1 files changed, 48 insertions, 48 deletions
diff --git a/include/asm-mips/mach-pb1x00/pb1100.h b/include/asm-mips/mach-pb1x00/pb1100.h index 63aa3926b297..b1a60f1cbd02 100644 --- a/include/asm-mips/mach-pb1x00/pb1100.h +++ b/include/asm-mips/mach-pb1x00/pb1100.h | |||
@@ -1,9 +1,8 @@ | |||
1 | /* | 1 | /* |
2 | * Alchemy Semi PB1100 Referrence Board | 2 | * Alchemy Semi Pb1100 Referrence Board |
3 | * | 3 | * |
4 | * Copyright 2001 MontaVista Software Inc. | 4 | * Copyright 2001, 2008 MontaVista Software Inc. |
5 | * Author: MontaVista Software, Inc. | 5 | * Author: MontaVista Software, Inc. <source@mvista.com> |
6 | * ppopov@mvista.com or source@mvista.com | ||
7 | * | 6 | * |
8 | * ######################################################################## | 7 | * ######################################################################## |
9 | * | 8 | * |
@@ -27,59 +26,60 @@ | |||
27 | #ifndef __ASM_PB1100_H | 26 | #ifndef __ASM_PB1100_H |
28 | #define __ASM_PB1100_H | 27 | #define __ASM_PB1100_H |
29 | 28 | ||
30 | #define PB1100_IDENT 0xAE000000 | 29 | #define PB1100_IDENT 0xAE000000 |
31 | #define BOARD_STATUS_REG 0xAE000004 | 30 | #define BOARD_STATUS_REG 0xAE000004 |
32 | # define PB1100_ROM_SEL (1<<15) | 31 | # define PB1100_ROM_SEL (1 << 15) |
33 | # define PB1100_ROM_SIZ (1<<14) | 32 | # define PB1100_ROM_SIZ (1 << 14) |
34 | # define PB1100_SWAP_BOOT (1<<13) | 33 | # define PB1100_SWAP_BOOT (1 << 13) |
35 | # define PB1100_FLASH_WP (1<<12) | 34 | # define PB1100_FLASH_WP (1 << 12) |
36 | # define PB1100_ROM_H_STS (1<<11) | 35 | # define PB1100_ROM_H_STS (1 << 11) |
37 | # define PB1100_ROM_L_STS (1<<10) | 36 | # define PB1100_ROM_L_STS (1 << 10) |
38 | # define PB1100_FLASH_H_STS (1<<9) | 37 | # define PB1100_FLASH_H_STS (1 << 9) |
39 | # define PB1100_FLASH_L_STS (1<<8) | 38 | # define PB1100_FLASH_L_STS (1 << 8) |
40 | # define PB1100_SRAM_SIZ (1<<7) | 39 | # define PB1100_SRAM_SIZ (1 << 7) |
41 | # define PB1100_TSC_BUSY (1<<6) | 40 | # define PB1100_TSC_BUSY (1 << 6) |
42 | # define PB1100_PCMCIA_VS_MASK (3<<4) | 41 | # define PB1100_PCMCIA_VS_MASK (3 << 4) |
43 | # define PB1100_RS232_CD (1<<3) | 42 | # define PB1100_RS232_CD (1 << 3) |
44 | # define PB1100_RS232_CTS (1<<2) | 43 | # define PB1100_RS232_CTS (1 << 2) |
45 | # define PB1100_RS232_DSR (1<<1) | 44 | # define PB1100_RS232_DSR (1 << 1) |
46 | # define PB1100_RS232_RI (1<<0) | 45 | # define PB1100_RS232_RI (1 << 0) |
47 | 46 | ||
48 | #define PB1100_IRDA_RS232 0xAE00000C | 47 | #define PB1100_IRDA_RS232 0xAE00000C |
49 | # define PB1100_IRDA_FULL (0<<14) /* full power */ | 48 | # define PB1100_IRDA_FULL (0 << 14) /* full power */ |
50 | # define PB1100_IRDA_SHUTDOWN (1<<14) | 49 | # define PB1100_IRDA_SHUTDOWN (1 << 14) |
51 | # define PB1100_IRDA_TT (2<<14) /* 2/3 power */ | 50 | # define PB1100_IRDA_TT (2 << 14) /* 2/3 power */ |
52 | # define PB1100_IRDA_OT (3<<14) /* 1/3 power */ | 51 | # define PB1100_IRDA_OT (3 << 14) /* 1/3 power */ |
53 | # define PB1100_IRDA_FIR (1<<13) | 52 | # define PB1100_IRDA_FIR (1 << 13) |
54 | 53 | ||
55 | #define PCMCIA_BOARD_REG 0xAE000010 | 54 | #define PCMCIA_BOARD_REG 0xAE000010 |
56 | # define PB1100_SD_WP1_RO (1<<15) /* read only */ | 55 | # define PB1100_SD_WP1_RO (1 << 15) /* read only */ |
57 | # define PB1100_SD_WP0_RO (1<<14) /* read only */ | 56 | # define PB1100_SD_WP0_RO (1 << 14) /* read only */ |
58 | # define PB1100_SD_PWR1 (1<<11) /* applies power to SD1 */ | 57 | # define PB1100_SD_PWR1 (1 << 11) /* applies power to SD1 */ |
59 | # define PB1100_SD_PWR0 (1<<10) /* applies power to SD0 */ | 58 | # define PB1100_SD_PWR0 (1 << 10) /* applies power to SD0 */ |
60 | # define PB1100_SEL_SD_CONN1 (1<<9) | 59 | # define PB1100_SEL_SD_CONN1 (1 << 9) |
61 | # define PB1100_SEL_SD_CONN0 (1<<8) | 60 | # define PB1100_SEL_SD_CONN0 (1 << 8) |
62 | # define PC_DEASSERT_RST (1<<7) | 61 | # define PC_DEASSERT_RST (1 << 7) |
63 | # define PC_DRV_EN (1<<4) | 62 | # define PC_DRV_EN (1 << 4) |
64 | 63 | ||
65 | #define PB1100_G_CONTROL 0xAE000014 /* graphics control */ | 64 | #define PB1100_G_CONTROL 0xAE000014 /* graphics control */ |
66 | 65 | ||
67 | #define PB1100_RST_VDDI 0xAE00001C | 66 | #define PB1100_RST_VDDI 0xAE00001C |
68 | # define PB1100_SOFT_RESET (1<<15) /* clear to reset the board */ | 67 | # define PB1100_SOFT_RESET (1 << 15) /* clear to reset the board */ |
69 | # define PB1100_VDDI_MASK (0x1F) | 68 | # define PB1100_VDDI_MASK 0x1F |
70 | 69 | ||
71 | #define PB1100_LEDS 0xAE000018 | 70 | #define PB1100_LEDS 0xAE000018 |
72 | 71 | ||
73 | /* 11:8 is 4 discreet LEDs. Clearing a bit illuminates the LED. | 72 | /* |
74 | * 7:0 is the LED Display's decimal points. | 73 | * 11:8 is 4 discreet LEDs. Clearing a bit illuminates the LED. |
74 | * 7:0 is the LED Display's decimal points. | ||
75 | */ | 75 | */ |
76 | #define PB1100_HEX_LED 0xAE000018 | 76 | #define PB1100_HEX_LED 0xAE000018 |
77 | 77 | ||
78 | /* PCMCIA PB1100 specific defines */ | 78 | /* PCMCIA Pb1100 specific defines */ |
79 | #define PCMCIA_MAX_SOCK 0 | 79 | #define PCMCIA_MAX_SOCK 0 |
80 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK+1) | 80 | #define PCMCIA_NUM_SOCKS (PCMCIA_MAX_SOCK + 1) |
81 | 81 | ||
82 | /* VPP/VCC */ | 82 | /* VPP/VCC */ |
83 | #define SET_VCC_VPP(VCC, VPP) (((VCC)<<2) | ((VPP)<<0)) | 83 | #define SET_VCC_VPP(VCC, VPP) (((VCC) << 2) | ((VPP) << 0)) |
84 | 84 | ||
85 | #endif /* __ASM_PB1100_H */ | 85 | #endif /* __ASM_PB1100_H */ |