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

« back to all changes in this revision

Viewing changes to hw/max111x.c

  • Committer: Bazaar Package Importer
  • Author(s): Aurelien Jarno, Aurelien Jarno
  • Date: 2009-03-22 10:13:17 UTC
  • mfrom: (1.2.1 upstream) (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090322101317-iigjtnu5qil35dtb
Tags: 0.10.1-1
[ Aurelien Jarno ]
* New upstream stable release:
  - patches/80_stable-branch.patch: remove.
* debian/control: 
  - Remove depends on proll.
  - Move depends on device-tree-compiler to build-depends.
  - Bump Standards-Version to 3.8.1 (no changes).
* patches/82_qemu-img_decimal.patch: new patch from upstream to make
  qemu-img accept sizes with decimal values (closes: bug#501400).

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
    return 0;
122
122
}
123
123
 
124
 
static int max111x_iid = 0;
125
 
 
126
124
static struct max111x_s *max111x_init(qemu_irq cb)
127
125
{
128
126
    struct max111x_s *s;
143
141
    s->input[7] = 0x80;
144
142
    s->com = 0;
145
143
 
146
 
    register_savevm("max111x", max111x_iid ++, 0,
147
 
                    max111x_save, max111x_load, s);
 
144
    register_savevm("max111x", -1, 0, max111x_save, max111x_load, s);
148
145
 
149
146
    return s;
150
147
}