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
6
vl.c
6
vl.c
|
@ -2856,11 +2856,11 @@ void usb_info(Monitor *mon)
|
|||
/* PCMCIA/Cardbus */
|
||||
|
||||
static struct pcmcia_socket_entry_s {
|
||||
struct pcmcia_socket_s *socket;
|
||||
PCMCIASocket *socket;
|
||||
struct pcmcia_socket_entry_s *next;
|
||||
} *pcmcia_sockets = 0;
|
||||
|
||||
void pcmcia_socket_register(struct pcmcia_socket_s *socket)
|
||||
void pcmcia_socket_register(PCMCIASocket *socket)
|
||||
{
|
||||
struct pcmcia_socket_entry_s *entry;
|
||||
|
||||
|
@ -2870,7 +2870,7 @@ void pcmcia_socket_register(struct pcmcia_socket_s *socket)
|
|||
pcmcia_sockets = entry;
|
||||
}
|
||||
|
||||
void pcmcia_socket_unregister(struct pcmcia_socket_s *socket)
|
||||
void pcmcia_socket_unregister(PCMCIASocket *socket)
|
||||
{
|
||||
struct pcmcia_socket_entry_s *entry, **ptr;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue