Replace tabs by 8 spaces. No code change, by Herve Poussineau.
[qemu/dscho.git] / hw / m48t59.h
blobcfe9b2af5e86871d2b33e9e7f3e7ed60b030ab27
1 #if !defined (__M48T59_H__)
2 #define __M48T59_H__
4 typedef struct m48t59_t m48t59_t;
6 void m48t59_write (m48t59_t *NVRAM, uint32_t addr, uint32_t val);
7 uint32_t m48t59_read (m48t59_t *NVRAM, uint32_t addr);
8 void m48t59_toggle_lock (m48t59_t *NVRAM, int lock);
9 m48t59_t *m48t59_init (qemu_irq IRQ, target_phys_addr_t mem_base,
10 uint32_t io_base, uint16_t size,
11 int type);
13 #endif /* !defined (__M48T59_H__) */