mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
Follow coding conventions
Remove explicit struct qualifiers and rename structure types. Signed-off-by: Paul Brook <paul@codesourcery.com>
This commit is contained in:
parent
d4ec522882
commit
bc24a225af
56 changed files with 864 additions and 862 deletions
10
hw/usb.h
10
hw/usb.h
|
@ -292,8 +292,8 @@ enum musb_irq_source_e {
|
|||
__musb_irq_max,
|
||||
};
|
||||
|
||||
struct musb_s;
|
||||
struct musb_s *musb_init(qemu_irq *irqs);
|
||||
uint32_t musb_core_intr_get(struct musb_s *s);
|
||||
void musb_core_intr_clear(struct musb_s *s, uint32_t mask);
|
||||
void musb_set_size(struct musb_s *s, int epnum, int size, int is_tx);
|
||||
typedef struct MUSBState MUSBState;
|
||||
MUSBState *musb_init(qemu_irq *irqs);
|
||||
uint32_t musb_core_intr_get(MUSBState *s);
|
||||
void musb_core_intr_clear(MUSBState *s, uint32_t mask);
|
||||
void musb_set_size(MUSBState *s, int epnum, int size, int is_tx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue