David Hendricks has uploaded this change for review.
[WIP] Add uncrustify on/off markers where appropriate
Change-Id: I146a32e921d1c828a7d05ebb88373abe22e89053
Signed-off-by: David Hendricks <david.hendricks@gmail.com>
---
M board_enable.c
M chipset_enable.c
M print.c
3 files changed, 8 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/55/42555/1
diff --git a/board_enable.c b/board_enable.c
index 9cf0103..e95fcff 100644
--- a/board_enable.c
+++ b/board_enable.c
@@ -2349,6 +2349,7 @@
*/
/* Please keep this list alphabetically ordered by vendor/board name. */
+/* *INDENT-OFF* */
const struct board_match board_matches[] = {
/* first pci-id set [4], second pci-id set [4], dmi identifier, coreboot id [2], phase, vendor name, board name max_rom_... OK? flash enable */
@@ -2530,6 +2531,7 @@
#endif
{ 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL, P3, NULL, NULL, 0, NT, NULL}, /* end marker */
};
+/* *INDENT-ON* */
int selfcheck_board_enables(void)
{
diff --git a/chipset_enable.c b/chipset_enable.c
index 632679c..49f4f2e 100644
--- a/chipset_enable.c
+++ b/chipset_enable.c
@@ -1690,6 +1690,7 @@
#define B_S (BUS_SPI)
/* Please keep this list numerically sorted by vendor/device ID. */
+/* *INDENT-OFF* */
const struct penable chipset_enables[] = {
#if defined(__i386__) || defined(__x86_64__)
{0x1002, 0x4377, B_PFL, OK, "ATI", "SB400", enable_flash_sb400},
@@ -2066,6 +2067,7 @@
#endif
{0},
};
+/* *INDENT-ON* */
int chipset_flash_enable(void)
{
diff --git a/print.c b/print.c
index feca45e..06561ec 100644
--- a/print.c
+++ b/print.c
@@ -515,6 +515,7 @@
#endif
/* Please keep this list alphabetically ordered by vendor/board. */
+/* *INDENT-OFF* */
const struct board_info boards_known[] = {
#if defined(__i386__) || defined(__x86_64__)
B("A-Trend", "ATC-6220", OK, "http://www.motherboard.cz/mb/atrend/atc6220.htm", NULL),
@@ -1142,8 +1143,10 @@
{0},
};
+/* *INDENT-ON* */
/* Please keep this list alphabetically ordered by vendor/board. */
+/* *INDENT-OFF* */
const struct board_info laptops_known[] = {
#if defined(__i386__) || defined(__x86_64__)
B("Acer", "Aspire 1520", OK, "http://support.acer.com/us/en/acerpanam/notebook/0000/Acer/Aspire1520/Aspire1520nv.shtml", NULL),
@@ -1176,4 +1179,5 @@
{0},
};
+/* *INDENT-ON* */
#endif
To view, visit change 42555. To unsubscribe, or for help writing mail filters, visit settings.