From: Bhumika Goyal Date: Tue, 22 Aug 2017 08:13:29 +0000 (+0530) Subject: net: mdio-gpio: make mdiobb_ops const X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=41a130f7c61d2adb303852d3fca938ad138a96d8;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git net: mdio-gpio: make mdiobb_ops const Make this const as it is only stored in a const field of a mdiobb_ctrl structure. Signed-off-by: Bhumika Goyal Reviewed-by: Andrew Lunn Signed-off-by: David S. Miller --- diff --git a/drivers/net/phy/mdio-gpio.c b/drivers/net/phy/mdio-gpio.c index 7faa79b254ef..4333c6e14742 100644 --- a/drivers/net/phy/mdio-gpio.c +++ b/drivers/net/phy/mdio-gpio.c @@ -116,7 +116,7 @@ static void mdc_set(struct mdiobb_ctrl *ctrl, int what) gpiod_set_value(bitbang->mdc, what); } -static struct mdiobb_ops mdio_gpio_ops = { +static const struct mdiobb_ops mdio_gpio_ops = { .owner = THIS_MODULE, .set_mdc = mdc_set, .set_mdio_dir = mdio_dir,