Add some missing static qualifiers
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5363 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
98448f58c1
commit
674bb26172
@ -37,7 +37,7 @@
|
||||
|
||||
#define CURSES_KEYS KEY_MAX /* KEY_MAX defined in <curses.h> */
|
||||
|
||||
int curses2keycode[CURSES_KEYS] = {
|
||||
static int curses2keycode[CURSES_KEYS] = {
|
||||
[0 ... (CURSES_KEYS - 1)] = -1,
|
||||
|
||||
[0x01b] = 1, /* Escape */
|
||||
@ -216,7 +216,7 @@ int curses2keycode[CURSES_KEYS] = {
|
||||
|
||||
};
|
||||
|
||||
int curses2keysym[CURSES_KEYS] = {
|
||||
static int curses2keysym[CURSES_KEYS] = {
|
||||
[0 ... (CURSES_KEYS - 1)] = -1,
|
||||
|
||||
['\n'] = '\n',
|
||||
|
@ -783,7 +783,7 @@ e1000_mmio_readw(void *opaque, target_phys_addr_t addr)
|
||||
(8 * (addr & 3))) & 0xffff;
|
||||
}
|
||||
|
||||
int mac_regtosave[] = {
|
||||
static int mac_regtosave[] = {
|
||||
CTRL, EECD, EERD, GPRC, GPTC, ICR, ICS, IMC, IMS,
|
||||
LEDCTL, MANC, MDIC, MPC, PBA, RCTL, RDBAH, RDBAL, RDH,
|
||||
RDLEN, RDT, STATUS, SWSM, TCTL, TDBAH, TDBAL, TDH, TDLEN,
|
||||
@ -791,7 +791,7 @@ int mac_regtosave[] = {
|
||||
};
|
||||
enum { MAC_NSAVE = sizeof mac_regtosave/sizeof *mac_regtosave };
|
||||
|
||||
struct {
|
||||
static struct {
|
||||
int size;
|
||||
int array0;
|
||||
} mac_regarraystosave[] = { {32, RA}, {128, MTA} };
|
||||
|
@ -15,7 +15,7 @@ struct mbuf *next_m; /* Pointer to next mbuf to output */
|
||||
|
||||
#define ifs_init(ifm) ((ifm)->ifs_next = (ifm)->ifs_prev = (ifm))
|
||||
|
||||
void
|
||||
static void
|
||||
ifs_insque(struct mbuf *ifm, struct mbuf *ifmhead)
|
||||
{
|
||||
ifm->ifs_next = ifmhead->ifs_next;
|
||||
@ -24,7 +24,7 @@ ifs_insque(struct mbuf *ifm, struct mbuf *ifmhead)
|
||||
ifm->ifs_next->ifs_prev = ifm;
|
||||
}
|
||||
|
||||
void
|
||||
static void
|
||||
ifs_remque(struct mbuf *ifm)
|
||||
{
|
||||
ifm->ifs_prev->ifs_next = ifm->ifs_next;
|
||||
|
4
vl.c
4
vl.c
@ -5375,7 +5375,7 @@ static struct bt_vlan_s {
|
||||
} *first_bt_vlan;
|
||||
|
||||
/* find or alloc a new bluetooth "VLAN" */
|
||||
struct bt_scatternet_s *qemu_find_bt_vlan(int id)
|
||||
static struct bt_scatternet_s *qemu_find_bt_vlan(int id)
|
||||
{
|
||||
struct bt_vlan_s **pvlan, *vlan;
|
||||
for (vlan = first_bt_vlan; vlan != NULL; vlan = vlan->next) {
|
||||
@ -6360,7 +6360,7 @@ static int bdrv_fclose(void *opaque)
|
||||
return 0;
|
||||
}
|
||||
|
||||
QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int64_t offset, int is_writable)
|
||||
static QEMUFile *qemu_fopen_bdrv(BlockDriverState *bs, int64_t offset, int is_writable)
|
||||
{
|
||||
QEMUFileBdrv *s;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user