#ifndef LINK_H #define LINK_H #include #include #include #include #ifndef SPEED_UNKNOWN #define SPEED_UNKNOWN -1 #endif #include "built_in.h" extern int wireless_sigqual(const char *ifname, struct iw_statistics *stats); extern int wireless_rangemax_sigqual(const char *ifname); extern u32 wireless_bitrate(const char *ifname); extern u32 ethtool_bitrate(const char *ifname); extern int ethtool_drvinf(const char *ifname, struct ethtool_drvinfo *drvinf); extern int ethtool_link(const char *ifname); #endif /* LINK_H */ ad>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Fuzzey <mfuzzey@parkeon.com>2016-05-20 14:23:38 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-08-31 15:14:44 +0200
commit96b0af4b729cabd44e237c5a6b9bd4e0ea4ed457 (patch)
tree2dda303d7b734a39c1e3ebeec15b38d75395091a
parentdf6a58c5c5aa8ecb1e088ecead3fa33ae70181f1 (diff)
documentation: drivers/core/of: fix name of of_node symlink
commit 5590f3196b29 ("drivers/core/of: Add symlink to device-tree from devices with an OF node") added a symlink called "of_node" to sysfs however the documentation describes it as "of_path". Fix the documentation to match what the code actually does. Signed-off-by: Martin Fuzzey <mfuzzey@parkeon.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>