diff options
Diffstat (limited to 'hw/es1370.c')
-rw-r--r-- | hw/es1370.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/hw/es1370.c b/hw/es1370.c index 217fd30b53..9fddd9d8b3 100644 --- a/hw/es1370.c +++ b/hw/es1370.c @@ -432,7 +432,8 @@ static void es1370_update_voices (ES1370State *s, uint32_t ctl, uint32_t sctl) "es1370.adc", s, es1370_adc_callback, - &as + &as, + 0 /* little endian */ ); } else { @@ -443,7 +444,8 @@ static void es1370_update_voices (ES1370State *s, uint32_t ctl, uint32_t sctl) i ? "es1370.dac2" : "es1370.dac1", s, i ? es1370_dac2_callback : es1370_dac1_callback, - &as + &as, + 0 /* litle endian */ ); } } |