Alan Green has uploaded this change for review.

View Change

flashchips.c: Replace comment with #if 0

To allow better handling by automated tools, replace /* */ commenting
out a whole entry with #if 0 / #endif

Signed-off-by: Alan Green <avg@google.com>
Change-Id: Ib30b3a16f25de5def508d90ec9375563b1d4d384
---
M flashchips.c
1 file changed, 4 insertions(+), 2 deletions(-)

git pull ssh://review.coreboot.org:29418/flashrom refs/changes/36/33836/1
diff --git a/flashchips.c b/flashchips.c
index e421c4c..7f3d2a2 100644
--- a/flashchips.c
+++ b/flashchips.c
@@ -2511,7 +2511,8 @@
},

/*The AT26DF321 has the same ID as the AT25DF321. */
- /*{
+#if 0
+ {
.vendor = "Atmel",
.name = "AT26DF321",
.bustype = BUS_SPI,
@@ -2527,7 +2528,8 @@
.unlock = spi_disable_blockprotect,
.write = spi_chip_write_256,
.read = spi_chip_read,
- },*/
+ },
+#endif

{
.vendor = "Atmel",

To view, visit change 33836. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: flashrom
Gerrit-Branch: master
Gerrit-Change-Id: Ib30b3a16f25de5def508d90ec9375563b1d4d384
Gerrit-Change-Number: 33836
Gerrit-PatchSet: 1
Gerrit-Owner: Alan Green <avg@google.com>
Gerrit-MessageType: newchange