diff options
author | Stefan Raspl <raspl@linux.vnet.ibm.com> | 2013-01-20 21:30:19 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-01-21 13:51:14 -0500 |
commit | eb3fb0baa2369595fa5cbfadc16f87f99a71ce4b (patch) | |
tree | 9c8f4a08369d35a88bbae40ea8aa972ae131e3ec /drivers/s390 | |
parent | 6ebb7f8d79d16e9e921bc1112171faa93a9102ed (diff) |
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>
Diffstat (limited to 'drivers/s390')
-rw-r--r-- | drivers/s390/net/qeth_core.h | 3 | ||||
-rw-r--r-- | drivers/s390/net/qeth_core_main.c | 6 |
2 files changed, 2 insertions, 7 deletions
diff --git a/drivers/s390/net/qeth_core.h b/drivers/s390/net/qeth_core.h index 480fbeab0256..7f526bf1ecea 100644 --- a/drivers/s390/net/qeth_core.h +++ b/drivers/s390/net/qeth_core.h | |||
@@ -909,9 +909,6 @@ struct qeth_cmd_buffer *qeth_wait_for_buffer(struct qeth_channel *); | |||
909 | int qeth_mdio_read(struct net_device *, int, int); | 909 | int qeth_mdio_read(struct net_device *, int, int); |
910 | int qeth_snmp_command(struct qeth_card *, char __user *); | 910 | int qeth_snmp_command(struct qeth_card *, char __user *); |
911 | int qeth_query_oat_command(struct qeth_card *, char __user *); | 911 | 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); | ||
915 | int qeth_send_control_data(struct qeth_card *, int, struct qeth_cmd_buffer *, | 912 | int qeth_send_control_data(struct qeth_card *, int, struct qeth_cmd_buffer *, |
916 | int (*reply_cb)(struct qeth_card *, struct qeth_reply*, unsigned long), | 913 | int (*reply_cb)(struct qeth_card *, struct qeth_reply*, unsigned long), |
917 | void *reply_param); | 914 | void *reply_param); |
diff --git a/drivers/s390/net/qeth_core_main.c b/drivers/s390/net/qeth_core_main.c index 1ea6b70d4855..db077c48a8b7 100644 --- a/drivers/s390/net/qeth_core_main.c +++ b/drivers/s390/net/qeth_core_main.c | |||
@@ -2868,7 +2868,7 @@ int qeth_send_startlan(struct qeth_card *card) | |||
2868 | } | 2868 | } |
2869 | EXPORT_SYMBOL_GPL(qeth_send_startlan); | 2869 | EXPORT_SYMBOL_GPL(qeth_send_startlan); |
2870 | 2870 | ||
2871 | int qeth_default_setadapterparms_cb(struct qeth_card *card, | 2871 | static int qeth_default_setadapterparms_cb(struct qeth_card *card, |
2872 | struct qeth_reply *reply, unsigned long data) | 2872 | struct qeth_reply *reply, unsigned long data) |
2873 | { | 2873 | { |
2874 | struct qeth_ipa_cmd *cmd; | 2874 | struct qeth_ipa_cmd *cmd; |
@@ -2881,7 +2881,6 @@ int qeth_default_setadapterparms_cb(struct qeth_card *card, | |||
2881 | cmd->data.setadapterparms.hdr.return_code; | 2881 | cmd->data.setadapterparms.hdr.return_code; |
2882 | return 0; | 2882 | return 0; |
2883 | } | 2883 | } |
2884 | EXPORT_SYMBOL_GPL(qeth_default_setadapterparms_cb); | ||
2885 | 2884 | ||
2886 | static int qeth_query_setadapterparms_cb(struct qeth_card *card, | 2885 | static int qeth_query_setadapterparms_cb(struct qeth_card *card, |
2887 | struct qeth_reply *reply, unsigned long data) | 2886 | struct qeth_reply *reply, unsigned long data) |
@@ -2901,7 +2900,7 @@ static int qeth_query_setadapterparms_cb(struct qeth_card *card, | |||
2901 | return qeth_default_setadapterparms_cb(card, reply, (unsigned long)cmd); | 2900 | return qeth_default_setadapterparms_cb(card, reply, (unsigned long)cmd); |
2902 | } | 2901 | } |
2903 | 2902 | ||
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, |
2905 | __u32 command, __u32 cmdlen) | 2904 | __u32 command, __u32 cmdlen) |
2906 | { | 2905 | { |
2907 | struct qeth_cmd_buffer *iob; | 2906 | struct qeth_cmd_buffer *iob; |
@@ -2917,7 +2916,6 @@ struct qeth_cmd_buffer *qeth_get_adapter_cmd(struct qeth_card *card, | |||
2917 | 2916 | ||
2918 | return iob; | 2917 | return iob; |
2919 | } | 2918 | } |
2920 | EXPORT_SYMBOL_GPL(qeth_get_adapter_cmd); | ||
2921 | 2919 | ||
2922 | int qeth_query_setadapterparms(struct qeth_card *card) | 2920 | int qeth_query_setadapterparms(struct qeth_card *card) |
2923 | { | 2921 | { |