OSDN Git Service

fpga: altera_freeze_bridge: Constify ops
authorMoritz Fischer <mdf@kernel.org>
Fri, 24 Mar 2017 00:34:24 +0000 (19:34 -0500)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 8 Apr 2017 15:45:28 +0000 (17:45 +0200)
The ops are not changing, make them const.

Signed-off-by: Moritz Fischer <mdf@kernel.org>
Cc: Alan Tull <atull@kernel.org>
Cc: linux-kernel@vger.kernel.org
Cc: linux-fpga@vger.kernel.org
Acked-by: Alan Tull <atull@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/fpga/altera-freeze-bridge.c

index 8dcd9fb..8c1bc7e 100644 (file)
@@ -203,7 +203,7 @@ static int altera_freeze_br_enable_show(struct fpga_bridge *bridge)
        return priv->enable;
 }
 
-static struct fpga_bridge_ops altera_freeze_br_br_ops = {
+static const struct fpga_bridge_ops altera_freeze_br_br_ops = {
        .enable_set = altera_freeze_br_enable_set,
        .enable_show = altera_freeze_br_enable_show,
 };