Skip to content

Commit eb3fb0b

Browse files
Stefan Raspldavem330
authored andcommitted
qeth: Remove unused exports
Remove exports that are not used anywhere else. Signed-off-by: Stefan Raspl <[email protected]> Signed-off-by: Frank Blaschka <[email protected]> Signed-off-by: David S. Miller <[email protected]>
1 parent 6ebb7f8 commit eb3fb0b

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

drivers/s390/net/qeth_core.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -909,9 +909,6 @@ struct qeth_cmd_buffer *qeth_wait_for_buffer(struct qeth_channel *);
909909
int qeth_mdio_read(struct net_device *, int, int);
910910
int qeth_snmp_command(struct qeth_card *, char __user *);
911911
int qeth_query_oat_command(struct qeth_card *, char __user *);
912-
struct qeth_cmd_buffer *qeth_get_adapter_cmd(struct qeth_card *, __u32, __u32);
913-
int qeth_default_setadapterparms_cb(struct qeth_card *, struct qeth_reply *,
914-
unsigned long);
915912
int qeth_send_control_data(struct qeth_card *, int, struct qeth_cmd_buffer *,
916913
int (*reply_cb)(struct qeth_card *, struct qeth_reply*, unsigned long),
917914
void *reply_param);

drivers/s390/net/qeth_core_main.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2868,7 +2868,7 @@ int qeth_send_startlan(struct qeth_card *card)
28682868
}
28692869
EXPORT_SYMBOL_GPL(qeth_send_startlan);
28702870

2871-
int qeth_default_setadapterparms_cb(struct qeth_card *card,
2871+
static int qeth_default_setadapterparms_cb(struct qeth_card *card,
28722872
struct qeth_reply *reply, unsigned long data)
28732873
{
28742874
struct qeth_ipa_cmd *cmd;
@@ -2881,7 +2881,6 @@ int qeth_default_setadapterparms_cb(struct qeth_card *card,
28812881
cmd->data.setadapterparms.hdr.return_code;
28822882
return 0;
28832883
}
2884-
EXPORT_SYMBOL_GPL(qeth_default_setadapterparms_cb);
28852884

28862885
static int qeth_query_setadapterparms_cb(struct qeth_card *card,
28872886
struct qeth_reply *reply, unsigned long data)
@@ -2901,7 +2900,7 @@ static int qeth_query_setadapterparms_cb(struct qeth_card *card,
29012900
return qeth_default_setadapterparms_cb(card, reply, (unsigned long)cmd);
29022901
}
29032902

2904-
struct qeth_cmd_buffer *qeth_get_adapter_cmd(struct qeth_card *card,
2903+
static struct qeth_cmd_buffer *qeth_get_adapter_cmd(struct qeth_card *card,
29052904
__u32 command, __u32 cmdlen)
29062905
{
29072906
struct qeth_cmd_buffer *iob;
@@ -2917,7 +2916,6 @@ struct qeth_cmd_buffer *qeth_get_adapter_cmd(struct qeth_card *card,
29172916

29182917
return iob;
29192918
}
2920-
EXPORT_SYMBOL_GPL(qeth_get_adapter_cmd);
29212919

29222920
int qeth_query_setadapterparms(struct qeth_card *card)
29232921
{

0 commit comments

Comments
 (0)