aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/gdm724x
diff options
context:
space:
mode:
authorImre Deak <imre.deak@gmail.com>2016-09-11 19:48:08 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-09-12 11:40:06 +0200
commitce4b80fb057563ec0cd8751658530597641fcfc9 (patch)
treed6b3592a2232e5ddfd26dbab844aa90cabcfda8b /drivers/staging/gdm724x
parentstaging: r8188eu: remove HalFunc member of adapter structure (diff)
downloadlinux-dev-ce4b80fb057563ec0cd8751658530597641fcfc9.tar.xz
linux-dev-ce4b80fb057563ec0cd8751658530597641fcfc9.zip
staging: gdm724x: gdm_lte: Constify gdm_netdev_ops
Fix the following checkpatch.pl warning: WARNING: struct net_device_ops should normally be const +static struct net_device_ops gdm_netdev_ops = { Signed-off-by: Imre Deak <imre.deak@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/gdm724x')
-rw-r--r--drivers/staging/gdm724x/gdm_lte.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/gdm724x/gdm_lte.c b/drivers/staging/gdm724x/gdm_lte.c
index bb552193e4ba..e72dfa9699f3 100644
--- a/drivers/staging/gdm724x/gdm_lte.c
+++ b/drivers/staging/gdm724x/gdm_lte.c
@@ -828,7 +828,7 @@ void start_rx_proc(struct phy_dev *phy_dev)
rx_complete, phy_dev, USB_COMPLETE);
}
-static struct net_device_ops gdm_netdev_ops = {
+static const struct net_device_ops gdm_netdev_ops = {
.ndo_open = gdm_lte_open,
.ndo_stop = gdm_lte_close,
.ndo_set_config = gdm_lte_set_config,