diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2008-11-19 13:42:14 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2008-11-19 13:42:14 +0000 |
commit | 86c9b8839217675cb1cc4830aa7d758864ee43f9 (patch) | |
tree | 3e66948c84653ea05bff591a34f8ac66ed414fd6 /src/mainboard/lippert/roadrunner-lx/chip.h | |
parent | f31ca16793ca2898e5983a12bdd706bfdd0d0efe (diff) | |
download | coreboot-86c9b8839217675cb1cc4830aa7d758864ee43f9.tar.xz |
Coding-style and whitespace fixes (also to make the code more similar
the Lippert Cool SpaceRunner LX which is already in svn).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3761 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/mainboard/lippert/roadrunner-lx/chip.h')
-rw-r--r-- | src/mainboard/lippert/roadrunner-lx/chip.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mainboard/lippert/roadrunner-lx/chip.h b/src/mainboard/lippert/roadrunner-lx/chip.h index 9af3fe3bf8..5a676edf0e 100644 --- a/src/mainboard/lippert/roadrunner-lx/chip.h +++ b/src/mainboard/lippert/roadrunner-lx/chip.h @@ -3,8 +3,6 @@ * * Copyright (C) 2008 LiPPERT Embedded Computers GmbH * - * Based on chip.h from AMD's DB800 mainboard. - * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or @@ -20,10 +18,13 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +/* Based on chip.h from AMD's DB800 mainboard. */ + #include <stdint.h> extern struct chip_operations mainboard_lippert_roadrunner_lx_ops; struct mainboard_lippert_roadrunner_lx_config { - u8 sio_gp1x_config; // bit5=Live LED, bit2=RS485_EN2, bit1=RS485_EN1 + /* bit5 = Live LED, bit2 = RS485_EN2, bit1 = RS485_EN1 */ + u8 sio_gp1x_config; }; |