qeth: Remove unused exports
Remove exports that are not used anywhere else. Signed-off-by: Stefan Raspl <raspl@linux.vnet.ibm.com> Signed-off-by: Frank Blaschka <frank.blaschka@de.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6ebb7f8d79
commit
eb3fb0baa2
2 changed files with 2 additions and 7 deletions
|
@ -909,9 +909,6 @@ struct qeth_cmd_buffer *qeth_wait_for_buffer(struct qeth_channel *);
|
||||||
int qeth_mdio_read(struct net_device *, int, int);
|
int qeth_mdio_read(struct net_device *, int, int);
|
||||||
int qeth_snmp_command(struct qeth_card *, char __user *);
|
int qeth_snmp_command(struct qeth_card *, char __user *);
|
||||||
int qeth_query_oat_command(struct qeth_card *, char __user *);
|
int qeth_query_oat_command(struct qeth_card *, char __user *);
|
||||||
struct qeth_cmd_buffer *qeth_get_adapter_cmd(struct qeth_card *, __u32, __u32);
|
|
||||||
int qeth_default_setadapterparms_cb(struct qeth_card *, struct qeth_reply *,
|
|
||||||
unsigned long);
|
|
||||||
int qeth_send_control_data(struct qeth_card *, int, struct qeth_cmd_buffer *,
|
int qeth_send_control_data(struct qeth_card *, int, struct qeth_cmd_buffer *,
|
||||||
int (*reply_cb)(struct qeth_card *, struct qeth_reply*, unsigned long),
|
int (*reply_cb)(struct qeth_card *, struct qeth_reply*, unsigned long),
|
||||||
void *reply_param);
|
void *reply_param);
|
||||||
|
|
|
@ -2868,7 +2868,7 @@ int qeth_send_startlan(struct qeth_card *card)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(qeth_send_startlan);
|
EXPORT_SYMBOL_GPL(qeth_send_startlan);
|
||||||
|
|
||||||
int qeth_default_setadapterparms_cb(struct qeth_card *card,
|
static int qeth_default_setadapterparms_cb(struct qeth_card *card,
|
||||||
struct qeth_reply *reply, unsigned long data)
|
struct qeth_reply *reply, unsigned long data)
|
||||||
{
|
{
|
||||||
struct qeth_ipa_cmd *cmd;
|
struct qeth_ipa_cmd *cmd;
|
||||||
|
@ -2881,7 +2881,6 @@ int qeth_default_setadapterparms_cb(struct qeth_card *card,
|
||||||
cmd->data.setadapterparms.hdr.return_code;
|
cmd->data.setadapterparms.hdr.return_code;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(qeth_default_setadapterparms_cb);
|
|
||||||
|
|
||||||
static int qeth_query_setadapterparms_cb(struct qeth_card *card,
|
static int qeth_query_setadapterparms_cb(struct qeth_card *card,
|
||||||
struct qeth_reply *reply, unsigned long data)
|
struct qeth_reply *reply, unsigned long data)
|
||||||
|
@ -2901,7 +2900,7 @@ static int qeth_query_setadapterparms_cb(struct qeth_card *card,
|
||||||
return qeth_default_setadapterparms_cb(card, reply, (unsigned long)cmd);
|
return qeth_default_setadapterparms_cb(card, reply, (unsigned long)cmd);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct qeth_cmd_buffer *qeth_get_adapter_cmd(struct qeth_card *card,
|
static struct qeth_cmd_buffer *qeth_get_adapter_cmd(struct qeth_card *card,
|
||||||
__u32 command, __u32 cmdlen)
|
__u32 command, __u32 cmdlen)
|
||||||
{
|
{
|
||||||
struct qeth_cmd_buffer *iob;
|
struct qeth_cmd_buffer *iob;
|
||||||
|
@ -2917,7 +2916,6 @@ struct qeth_cmd_buffer *qeth_get_adapter_cmd(struct qeth_card *card,
|
||||||
|
|
||||||
return iob;
|
return iob;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(qeth_get_adapter_cmd);
|
|
||||||
|
|
||||||
int qeth_query_setadapterparms(struct qeth_card *card)
|
int qeth_query_setadapterparms(struct qeth_card *card)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue