flashrom: Beautify flash chip ID verbose printout a little, always use %02x.
[coreboot.git] / util / flashrom / am29f040b.c
index cba4a289a687846e3287efac9c5a6af2087a9ab1..fbe435b8887f24dfec980303198c19f8fe1c1284 100644 (file)
@@ -1,32 +1,26 @@
 /*
- * am29f040.c: driver for programming AMD am29f040b 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.
  *
- *     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:
- *     AMD Am29F040B data sheet
+ * 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>
 #include <stdint.h>
 #include "flash.h"
-#include "jedec.h"
-#include "debug.h"
 
 static __inline__ int erase_sector_29f040b(volatile uint8_t *bios,
                                           unsigned long address)
@@ -43,7 +37,7 @@ static __inline__ int erase_sector_29f040b(volatile uint8_t *bios,
        /* wait for Toggle bit ready         */
        toggle_ready_jedec(bios + address);
 
-       return (0);
+       return 0;
 }
 
 static __inline__ int write_sector_29f040b(volatile uint8_t *bios,
@@ -70,7 +64,7 @@ static __inline__ int write_sector_29f040b(volatile uint8_t *bios,
                        printf("\b\b\b\b\b\b\b\b\b\b");
        }
 
-       return (0);
+       return 0;
 }
 
 int probe_29f040b(struct flashchip *flash)
@@ -89,7 +83,7 @@ int probe_29f040b(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;
 
@@ -110,7 +104,7 @@ int erase_29f040b(struct flashchip *flash)
        myusec_delay(10);
        toggle_ready_jedec(bios);
 
-       return (0);
+       return 0;
 }
 
 int write_29f040b(struct flashchip *flash, uint8_t *buf)
@@ -133,5 +127,5 @@ int write_29f040b(struct flashchip *flash, uint8_t *buf)
        }
        printf("\n");
 
-       return (0);
+       return 0;
 }