#ifndef DEV_H #define DEV_H #include #include "built_in.h" extern int device_mtu(const char *ifname); extern int device_address(const char *ifname, int af, struct sockaddr_storage *ss); extern int device_ifindex(const char *ifname); extern short device_get_flags(const char *ifname); extern void device_set_flags(const char *ifname, const short flags); extern int device_up_and_running(char *ifname); extern u32 device_bitrate(const char *ifname); #endif /* DEV_H */ xt.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Ceresoli <luca@lucaceresoli.net>2016-09-06 18:36:57 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-09-12 13:02:33 +0200
commitda25a8ec6b2d66d9510358173b8da4c80d686c2b (patch)
tree1fcd3179301c6e7c6443a416fb13e811b9487fdc
parentf1a2b7ab269884a17bbbd9cee643975e857b6fbe (diff)
staging: rtl8188eu: remove unused debugging functions
These functions were only mentioned in the rtw_proc_init_one() function in drivers/staging/rtl8188eu/os_dep/os_intfs.c, which was under #if 0 and has now been removed completely. As they are not used anywhere, and also violate the coding style rules, remove them. Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Cc: Kyle Kuffermann <kyle.kuffermann@gmail.com> Cc: Chris Elliott <chris@uksysadmin.com> Cc: Ivan Safonov <insafonov@gmail.com> Cc: devel@driverdev.osuosl.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>