diff options
author | Richard Leitner <richard.leitner@skidata.com> | 2017-12-22 13:08:09 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-12-27 19:06:50 +0300 |
commit | 04f629f730fcd30c811777d186b15c38737eaa3c (patch) | |
tree | 6e6856c7f6809cd26e2662bd3cdc5f35c0aa6676 /include/linux/mdio.h | |
parent | a8038befceccaacf4cf6e8bbd4fac4bbdbcb58f8 (diff) | |
download | linux-04f629f730fcd30c811777d186b15c38737eaa3c.tar.xz |
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.h | 4 |
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) |