mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
Fix formatting
This commit is contained in:
parent
a5e8e46bfb
commit
31226166bb
10
hw/sb16.c
10
hw/sb16.c
@ -869,7 +869,7 @@ static void reset (SB16State *s)
|
||||
s->v2x6 = 0;
|
||||
s->cmd = -1;
|
||||
|
||||
dsp_out_data(s, 0xaa);
|
||||
dsp_out_data (s, 0xaa);
|
||||
speaker (s, 0);
|
||||
control (s, 0);
|
||||
legacy_reset (s);
|
||||
@ -1440,7 +1440,7 @@ static int sb16_initfn (ISADevice *dev)
|
||||
|
||||
int SB16_init (qemu_irq *pic)
|
||||
{
|
||||
isa_create_simple("sb16");
|
||||
isa_create_simple ("sb16");
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -1459,8 +1459,8 @@ static ISADeviceInfo sb16_info = {
|
||||
},
|
||||
};
|
||||
|
||||
static void sb16_register(void)
|
||||
static void sb16_register (void)
|
||||
{
|
||||
isa_qdev_register(&sb16_info);
|
||||
isa_qdev_register (&sb16_info);
|
||||
}
|
||||
device_init(sb16_register)
|
||||
device_init (sb16_register)
|
||||
|
Loading…
Reference in New Issue
Block a user