~jderose/ubuntu/raring/qemu/vde-again

« back to all changes in this revision

Viewing changes to hw/fdc.h

  • Committer: Bazaar Package Importer
  • Author(s): Aurelien Jarno, Aurelien Jarno
  • Date: 2008-08-25 04:38:35 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080825043835-8e3tftavy8bujdch
Tags: 0.9.1-6
[ Aurelien Jarno ]
* debian/control: 
  - Update list of supported targets (Closes: bug#488339).
* debian/qemu-make-debian-root:
  - Use mktemp instead of $$ to create temporary directories (Closes: 
    bug#496394).
* debian/links:
  - Add missing links to manpages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* fdc.c */
 
2
#define MAX_FD 2
 
3
extern BlockDriverState *fd_table[MAX_FD];
 
4
 
 
5
typedef struct fdctrl_t fdctrl_t;
 
6
 
 
7
fdctrl_t *fdctrl_init (qemu_irq irq, int dma_chann, int mem_mapped,
 
8
                       target_phys_addr_t io_base,
 
9
                       BlockDriverState **fds);
 
10
fdctrl_t *sun4m_fdctrl_init (qemu_irq irq, target_phys_addr_t io_base,
 
11
                             BlockDriverState **fds);
 
12
int fdctrl_get_drive_type(fdctrl_t *fdctrl, int drive_num);