leon, grcan: consistent indentation

This commit does not contain any change of functionality.
This commit is contained in:
Martin Aberg
2017-01-24 11:16:41 +01:00
committed by Daniel Hellstrom
parent ad203e5887
commit bc40b4def8
2 changed files with 555 additions and 557 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -23,41 +23,41 @@ extern "C" {
#endif #endif
struct grcan_regs { struct grcan_regs {
volatile unsigned int conf; /* 0x00 */ volatile unsigned int conf; /* 0x00 */
volatile unsigned int stat; /* 0x04 */ volatile unsigned int stat; /* 0x04 */
volatile unsigned int ctrl; /* 0x08 */ volatile unsigned int ctrl; /* 0x08 */
volatile unsigned int dummy0[3]; /* 0x0C-0x014 */ volatile unsigned int dummy0[3]; /* 0x0C-0x014 */
volatile unsigned int smask; /* 0x18 */ volatile unsigned int smask; /* 0x18 */
volatile unsigned int scode; /* 0x1C */ volatile unsigned int scode; /* 0x1C */
volatile unsigned int dummy1[56]; /* 0x20-0xFC */ volatile unsigned int dummy1[56]; /* 0x20-0xFC */
volatile unsigned int pimsr; /* 0x100 */ volatile unsigned int pimsr; /* 0x100 */
volatile unsigned int pimr; /* 0x104 */ volatile unsigned int pimr; /* 0x104 */
volatile unsigned int pisr; /* 0x108 */ volatile unsigned int pisr; /* 0x108 */
volatile unsigned int pir; /* 0x10C */ volatile unsigned int pir; /* 0x10C */
volatile unsigned int imr; /* 0x110 */ volatile unsigned int imr; /* 0x110 */
volatile unsigned int picr; /* 0x114 */ volatile unsigned int picr; /* 0x114 */
volatile unsigned int dummy2[58]; /* 0x118-0x1FC */ volatile unsigned int dummy2[58]; /* 0x118-0x1FC */
volatile unsigned int tx0ctrl; /* 0x200 */ volatile unsigned int tx0ctrl; /* 0x200 */
volatile unsigned int tx0addr; /* 0x204 */ volatile unsigned int tx0addr; /* 0x204 */
volatile unsigned int tx0size; /* 0x208 */ volatile unsigned int tx0size; /* 0x208 */
volatile unsigned int tx0wr; /* 0x20C */ volatile unsigned int tx0wr; /* 0x20C */
volatile unsigned int tx0rd; /* 0x210 */ volatile unsigned int tx0rd; /* 0x210 */
volatile unsigned int tx0irq; /* 0x214 */ volatile unsigned int tx0irq; /* 0x214 */
volatile unsigned int dummy3[58]; /* 0x218-0x2FC */ volatile unsigned int dummy3[58]; /* 0x218-0x2FC */
volatile unsigned int rx0ctrl; /* 0x300 */ volatile unsigned int rx0ctrl; /* 0x300 */
volatile unsigned int rx0addr; /* 0x304 */ volatile unsigned int rx0addr; /* 0x304 */
volatile unsigned int rx0size; /* 0x308 */ volatile unsigned int rx0size; /* 0x308 */
volatile unsigned int rx0wr; /* 0x30C */ volatile unsigned int rx0wr; /* 0x30C */
volatile unsigned int rx0rd; /* 0x310 */ volatile unsigned int rx0rd; /* 0x310 */
volatile unsigned int rx0irq; /* 0x314 */ volatile unsigned int rx0irq; /* 0x314 */
volatile unsigned int rx0mask; /* 0x318 */ volatile unsigned int rx0mask; /* 0x318 */
volatile unsigned int rx0code; /* 0x31C */ volatile unsigned int rx0code; /* 0x31C */
}; };
struct grcan_stats { struct grcan_stats {
@@ -65,9 +65,9 @@ struct grcan_stats {
unsigned int overrun_cnt; unsigned int overrun_cnt;
unsigned int rxsync_cnt; unsigned int rxsync_cnt;
unsigned int txsync_cnt; unsigned int txsync_cnt;
unsigned int txloss_cnt; unsigned int txloss_cnt;
unsigned int ahberr_cnt; unsigned int ahberr_cnt;
unsigned int ints; unsigned int ints;
}; };
struct grcan_timing { struct grcan_timing {