aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/mdio.h
diff options
context:
space:
mode:
authorRichard Leitner <richard.leitner@skidata.com>2017-12-22 11:08:09 +0100
committerDavid S. Miller <davem@davemloft.net>2017-12-27 11:06:50 -0500
commit04f629f730fcd30c811777d186b15c38737eaa3c (patch)
tree6e6856c7f6809cd26e2662bd3cdc5f35c0aa6676 /include/linux/mdio.h
parentMerge branch 'hns3-next' (diff)
downloadwireguard-linux-04f629f730fcd30c811777d186b15c38737eaa3c.tar.xz
wireguard-linux-04f629f730fcd30c811777d186b15c38737eaa3c.zip
phylib: rename reset-(post-)delay-us to reset-(de)assert-us
As suggested by Rob Herring [1] rename the previously introduced reset-{,post-}delay-us bindings to the clearer reset-{,de}assert-us [1] https://patchwork.kernel.org/patch/10104905/ Signed-off-by: Richard Leitner <richard.leitner@skidata.com> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/mdio.h')
-rw-r--r--include/linux/mdio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/mdio.h b/include/linux/mdio.h
index e37c21d8eb19..268aad47ecd3 100644
--- a/include/linux/mdio.h
+++ b/include/linux/mdio.h
@@ -41,8 +41,8 @@ struct mdio_device {
int addr;
int flags;
struct gpio_desc *reset;
- unsigned int reset_delay;
- unsigned int reset_post_delay;
+ unsigned int reset_assert_delay;
+ unsigned int reset_deassert_delay;
};
#define to_mdio_device(d) container_of(d, struct mdio_device, dev)