summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLee Leahy <leroy.p.leahy@intel.com>2017-03-10 10:44:12 -0800
committerLee Leahy <leroy.p.leahy@intel.com>2017-03-10 22:27:02 +0100
commitf339973d6f1e9daae13ae4d0e6a437812b14bbd8 (patch)
tree5b9b399dbd3cedd1275d9036c4b770193980fe37
parentd5a2a292b0d0b2452b8b54e0ea021547d577af55 (diff)
downloadcoreboot-f339973d6f1e9daae13ae4d0e6a437812b14bbd8.tar.gz
coreboot-f339973d6f1e9daae13ae4d0e6a437812b14bbd8.tar.bz2
coreboot-f339973d6f1e9daae13ae4d0e6a437812b14bbd8.zip
commonlib: Wrap lines at 80 columns
Fix the following error detected by checkpatch.pl: ERROR: code indent should use tabs where possible TEST=Build and run on Galileo Gen2 Change-Id: I3a44a02d4cd1be6b2bb2f52fc832e673a580e562 Signed-off-by: Lee Leahy <Leroy.P.Leahy@intel.com> Reviewed-on: https://review.coreboot.org/18749 Reviewed-by: Aaron Durbin <adurbin@chromium.org> Tested-by: build bot (Jenkins)
-rw-r--r--src/commonlib/include/commonlib/coreboot_tables.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/commonlib/include/commonlib/coreboot_tables.h b/src/commonlib/include/commonlib/coreboot_tables.h
index 8902e91a4557..339503ad36ef 100644
--- a/src/commonlib/include/commonlib/coreboot_tables.h
+++ b/src/commonlib/include/commonlib/coreboot_tables.h
@@ -371,12 +371,12 @@ struct cmos_option_table {
};
/* cmos entry record
- This record is variable length. The name field may be
- shorter than CMOS_MAX_NAME_LENGTH. The entry may start
- anywhere in the byte, but can not span bytes unless it
- starts at the beginning of the byte and the length is
- fills complete bytes.
-*/
+ * This record is variable length. The name field may be
+ * shorter than CMOS_MAX_NAME_LENGTH. The entry may start
+ * anywhere in the byte, but can not span bytes unless it
+ * starts at the beginning of the byte and the length is
+ * fills complete bytes.
+ */
#define LB_TAG_OPTION 201
struct cmos_entries {
uint32_t tag; /* entry type */
@@ -392,9 +392,9 @@ struct cmos_entries {
/* cmos enumerations record
- This record is variable length. The text field may be
- shorter than CMOS_MAX_TEXT_LENGTH.
-*/
+ * This record is variable length. The text field may be
+ * shorter than CMOS_MAX_TEXT_LENGTH.
+ */
#define LB_TAG_OPTION_ENUM 202
struct cmos_enums {
uint32_t tag; /* enumeration type */
@@ -407,8 +407,8 @@ struct cmos_enums {
};
/* cmos defaults record
- This record contains default settings for the cmos ram.
-*/
+ * This record contains default settings for the cmos ram.
+ */
#define LB_TAG_OPTION_DEFAULTS 203
struct cmos_defaults {
uint32_t tag; /* default type */