Changeset 1474 for trunk/atahpt.c
- Timestamp:
- 12/18/11 16:01:24 (5 months ago)
- File:
-
- 1 edited
-
trunk/atahpt.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/atahpt.c
r1463 r1474 41 41 }; 42 42 43 static void atahpt_chip_writeb(const struct flashctx *flash, uint8_t val, 44 chipaddr addr); 45 static uint8_t atahpt_chip_readb(const struct flashctx *flash, 46 const chipaddr addr); 43 47 static const struct par_programmer par_programmer_atahpt = { 44 48 .chip_readb = atahpt_chip_readb, … … 81 85 } 82 86 83 void atahpt_chip_writeb(uint8_t val, chipaddr addr) 87 static void atahpt_chip_writeb(const struct flashctx *flash, uint8_t val, 88 chipaddr addr) 84 89 { 85 90 OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR); … … 87 92 } 88 93 89 uint8_t atahpt_chip_readb(const chipaddr addr) 94 static uint8_t atahpt_chip_readb(const struct flashctx *flash, 95 const chipaddr addr) 90 96 { 91 97 OUTL((uint32_t)addr, io_base_addr + BIOS_ROM_ADDR);
Note: See TracChangeset
for help on using the changeset viewer.
