flashrom: Beautify flash chip ID verbose printout a little, always use %02x.
[coreboot.git] / util / flashrom / mx29f002.c
index 31e924adbdccc2c5ad4f30f4a1e66d66002529d5..30adab1d72ce2919c18ac704678b50f19456444d 100644 (file)
@@ -1,27 +1,21 @@
 /*
- * mx29f002.c: driver for MXIC MX29F002 flash models
+ * This file is part of the flashrom project.
  *
+ * Copyright (C) 2000 Silicon Integrated System Corporation
  *
- * Copyright 2000 Silicon Integrated System Corporation
+ * 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
+ * (at your option) any later version.
  *
- *     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
- *     (at your option) any later version.
- *
- *     This program is distributed in the hope that it will be useful,
- *     but WITHOUT ANY WARRANTY; without even the implied warranty of
- *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- *     GNU General Public License for more details.
- *
- *     You should have received a copy of the GNU General Public License
- *     along with this program; if not, write to the Free Software
- *     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- *
- * Reference:
- *     MX29F002/002N data sheet
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
  *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
 #include <stdio.h>
@@ -44,7 +38,7 @@ int probe_29f002(struct flashchip *flash)
 
        myusec_delay(10);
 
-       printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, id1, id2);
+       printf_debug("%s: id1 0x%02x, id2 0x%02x\n", __FUNCTION__, id1, id2);
        if (id1 == flash->manufacture_id && id2 == flash->model_id)
                return 1;
 
@@ -79,7 +73,7 @@ int erase_29f002(struct flashchip *flash)
        *(bios + 0x3bfff) = 0x30;
 #endif
 
-       return (0);
+       return 0;
 }
 
 int write_29f002(struct flashchip *flash, uint8_t *buf)
@@ -94,7 +88,7 @@ int write_29f002(struct flashchip *flash, uint8_t *buf)
        erase_29f002(flash);
        //*bios = 0xF0;
 #if 1
-       printf("Programming Page: ");
+       printf("Programming page: ");
        for (i = 0; i < total_size; i++) {
                /* write to the sector */
                if ((i & 0xfff) == 0)
@@ -113,5 +107,5 @@ int write_29f002(struct flashchip *flash, uint8_t *buf)
 #endif
        printf("\n");
 
-       return (0);
+       return 0;
 }