[IRDA]: Possible cleanups.
This patch contains the following possible cleanups: - make the following needlessly global function static: - irnet/irnet_ppp.c: irnet_init - remove the following unneeded EXPORT_SYMBOL's: - irlmp.c: sysctl_discovery_timeout - irlmp.c: irlmp_reasons - irlmp.c: irlmp_dup - irqueue.c: hashbin_find_next Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
4c6ea29d82
commit
bf73d1c5d7
|
@ -53,7 +53,6 @@ struct irlmp_cb *irlmp = NULL;
|
||||||
/* These can be altered by the sysctl interface */
|
/* These can be altered by the sysctl interface */
|
||||||
int sysctl_discovery = 0;
|
int sysctl_discovery = 0;
|
||||||
int sysctl_discovery_timeout = 3; /* 3 seconds by default */
|
int sysctl_discovery_timeout = 3; /* 3 seconds by default */
|
||||||
EXPORT_SYMBOL(sysctl_discovery_timeout);
|
|
||||||
int sysctl_discovery_slots = 6; /* 6 slots by default */
|
int sysctl_discovery_slots = 6; /* 6 slots by default */
|
||||||
int sysctl_lap_keepalive_time = LM_IDLE_TIMEOUT * 1000 / HZ;
|
int sysctl_lap_keepalive_time = LM_IDLE_TIMEOUT * 1000 / HZ;
|
||||||
char sysctl_devname[65];
|
char sysctl_devname[65];
|
||||||
|
@ -67,7 +66,6 @@ const char *irlmp_reasons[] = {
|
||||||
"LM_INIT_DISCONNECT",
|
"LM_INIT_DISCONNECT",
|
||||||
"ERROR, NOT USED",
|
"ERROR, NOT USED",
|
||||||
};
|
};
|
||||||
EXPORT_SYMBOL(irlmp_reasons);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Function irlmp_init (void)
|
* Function irlmp_init (void)
|
||||||
|
@ -675,7 +673,6 @@ struct lsap_cb *irlmp_dup(struct lsap_cb *orig, void *instance)
|
||||||
|
|
||||||
return new;
|
return new;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(irlmp_dup);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Function irlmp_disconnect_request (handle, userdata)
|
* Function irlmp_disconnect_request (handle, userdata)
|
||||||
|
|
|
@ -517,9 +517,6 @@ extern int
|
||||||
irda_irnet_init(void); /* Initialise IrDA part of IrNET */
|
irda_irnet_init(void); /* Initialise IrDA part of IrNET */
|
||||||
extern void
|
extern void
|
||||||
irda_irnet_cleanup(void); /* Teardown IrDA part of IrNET */
|
irda_irnet_cleanup(void); /* Teardown IrDA part of IrNET */
|
||||||
/* ---------------------------- MODULE ---------------------------- */
|
|
||||||
extern int
|
|
||||||
irnet_init(void); /* Initialise IrNET module */
|
|
||||||
|
|
||||||
/**************************** VARIABLES ****************************/
|
/**************************** VARIABLES ****************************/
|
||||||
|
|
||||||
|
|
|
@ -1107,7 +1107,7 @@ ppp_irnet_cleanup(void)
|
||||||
/*
|
/*
|
||||||
* Module main entry point
|
* Module main entry point
|
||||||
*/
|
*/
|
||||||
int __init
|
static int __init
|
||||||
irnet_init(void)
|
irnet_init(void)
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
|
|
|
@ -822,7 +822,6 @@ void* hashbin_find_next( hashbin_t* hashbin, long hashv, const char* name,
|
||||||
|
|
||||||
return entry;
|
return entry;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(hashbin_find_next);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Function hashbin_get_first (hashbin)
|
* Function hashbin_get_first (hashbin)
|
||||||
|
|
Loading…
Reference in New Issue