~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to hw/display/ssd0303.c

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
179
179
    return 0;
180
180
}
181
181
 
182
 
static void ssd0303_event(I2CSlave *i2c, enum i2c_event event)
 
182
static int ssd0303_event(I2CSlave *i2c, enum i2c_event event)
183
183
{
184
184
    ssd0303_state *s = SSD0303(i2c);
185
185
 
193
193
        /* Nothing to do.  */
194
194
        break;
195
195
    }
 
196
 
 
197
    return 0;
196
198
}
197
199
 
198
200
static void ssd0303_update_display(void *opaque)