Mark the following boards as OK

 - ASUS M3A78-EM (reported by Christian Heinz <christian.ch.heinz@gmail.com>)
   http://www.flashrom.org/pipermail/flashrom/2009-September/000629.html
 
 - MSI MS-7368 (K9AG Neo2-Digital) (reported by Joshua Roys <roysjosh@gmail.com>)
   http://www.flashrom.org/pipermail/flashrom/2009-September/000632.html

 - GIGABYTE GA-MA770T-UD3P (reported by Kevin Sopp <baraclese@googlemail.com>)
   http://www.flashrom.org/pipermail/flashrom/2009-September/000529.html
   
 - Elitegroup P6VAP-A+
   Tested by Uwe Hermann <uwe@hermann-uwe.de> on hardware. Maximum supported
   chip size in this board is 256 KB.
   
Small changes in print.c were required to adjust for longer board names.

Corresponding to flashrom svn r734.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
diff --git a/print.c b/print.c
index 235c725..9300e30 100644
--- a/print.c
+++ b/print.c
@@ -181,7 +181,7 @@
 		for (j = 0; j < 25 - strlen(b[i].vendor); j++)
 			printf(" ");
 		printf("%s", b[i].name);
-		for (j = 0; j < 23 - strlen(b[i].name); j++)
+		for (j = 0; j < 28 - strlen(b[i].name); j++)
 			printf(" ");
 		printf("\n");
 	}
@@ -196,7 +196,7 @@
 		boardcount++;
 
 	printf("\nSupported boards which need write-enable code (total: %d):"
-	       "\n\nVendor:                  Board:                   "
+	       "\n\nVendor:                  Board:                        "
 	       "Required option:\n\n", boardcount);
 
 	for (i = 0; b[i].vendor_name != NULL; i++) {
@@ -204,7 +204,7 @@
 		for (j = 0; j < 25 - strlen(b[i].vendor_name); j++)
 			printf(" ");
 		printf("%s", b[i].board_name);
-		for (j = 0; j < 25 - strlen(b[i].board_name); j++)
+		for (j = 0; j < 30 - strlen(b[i].board_name); j++)
 			printf(" ");
 		if (b[i].lb_vendor != NULL)
 			printf("-m %s:%s\n", b[i].lb_vendor, b[i].lb_part);