Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Stefan Raspl and committed by
David S. Miller
eb3fb0ba 6ebb7f8d

+2 -7
-3
drivers/s390/net/qeth_core.h
··· 909 909 int qeth_mdio_read(struct net_device *, int, int); 910 910 int qeth_snmp_command(struct qeth_card *, char __user *); 911 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 912 int qeth_send_control_data(struct qeth_card *, int, struct qeth_cmd_buffer *, 916 913 int (*reply_cb)(struct qeth_card *, struct qeth_reply*, unsigned long), 917 914 void *reply_param);
+2 -4
drivers/s390/net/qeth_core_main.c
··· 2868 2868 } 2869 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 2872 struct qeth_reply *reply, unsigned long data) 2873 2873 { 2874 2874 struct qeth_ipa_cmd *cmd; ··· 2881 2881 cmd->data.setadapterparms.hdr.return_code; 2882 2882 return 0; 2883 2883 } 2884 - EXPORT_SYMBOL_GPL(qeth_default_setadapterparms_cb); 2885 2884 2886 2885 static int qeth_query_setadapterparms_cb(struct qeth_card *card, 2887 2886 struct qeth_reply *reply, unsigned long data) ··· 2900 2901 return qeth_default_setadapterparms_cb(card, reply, (unsigned long)cmd); 2901 2902 } 2902 2903 2903 - struct qeth_cmd_buffer *qeth_get_adapter_cmd(struct qeth_card *card, 2904 + static struct qeth_cmd_buffer *qeth_get_adapter_cmd(struct qeth_card *card, 2904 2905 __u32 command, __u32 cmdlen) 2905 2906 { 2906 2907 struct qeth_cmd_buffer *iob; ··· 2916 2917 2917 2918 return iob; 2918 2919 } 2919 - EXPORT_SYMBOL_GPL(qeth_get_adapter_cmd); 2920 2920 2921 2921 int qeth_query_setadapterparms(struct qeth_card *card) 2922 2922 {