Commit 26955037 authored by Krzysztof Kozlowski's avatar Krzysztof Kozlowski Committed by David S. Miller

nfc: mrvl: constify static nfcmrvl_if_ops

File-scope struct nfcmrvl_if_ops is not modified so can be made const.
Signed-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fe53159f
...@@ -146,7 +146,7 @@ static void nfcmrvl_i2c_nci_update_config(struct nfcmrvl_private *priv, ...@@ -146,7 +146,7 @@ static void nfcmrvl_i2c_nci_update_config(struct nfcmrvl_private *priv,
{ {
} }
static struct nfcmrvl_if_ops i2c_ops = { static const struct nfcmrvl_if_ops i2c_ops = {
.nci_open = nfcmrvl_i2c_nci_open, .nci_open = nfcmrvl_i2c_nci_open,
.nci_close = nfcmrvl_i2c_nci_close, .nci_close = nfcmrvl_i2c_nci_close,
.nci_send = nfcmrvl_i2c_nci_send, .nci_send = nfcmrvl_i2c_nci_send,
......
...@@ -91,7 +91,7 @@ static const struct nci_ops nfcmrvl_nci_ops = { ...@@ -91,7 +91,7 @@ static const struct nci_ops nfcmrvl_nci_ops = {
struct nfcmrvl_private *nfcmrvl_nci_register_dev(enum nfcmrvl_phy phy, struct nfcmrvl_private *nfcmrvl_nci_register_dev(enum nfcmrvl_phy phy,
void *drv_data, void *drv_data,
struct nfcmrvl_if_ops *ops, const struct nfcmrvl_if_ops *ops,
struct device *dev, struct device *dev,
const struct nfcmrvl_platform_data *pdata) const struct nfcmrvl_platform_data *pdata)
{ {
......
...@@ -77,7 +77,7 @@ struct nfcmrvl_private { ...@@ -77,7 +77,7 @@ struct nfcmrvl_private {
/* PHY type */ /* PHY type */
enum nfcmrvl_phy phy; enum nfcmrvl_phy phy;
/* Low level driver ops */ /* Low level driver ops */
struct nfcmrvl_if_ops *if_ops; const struct nfcmrvl_if_ops *if_ops;
}; };
struct nfcmrvl_if_ops { struct nfcmrvl_if_ops {
...@@ -92,7 +92,7 @@ void nfcmrvl_nci_unregister_dev(struct nfcmrvl_private *priv); ...@@ -92,7 +92,7 @@ void nfcmrvl_nci_unregister_dev(struct nfcmrvl_private *priv);
int nfcmrvl_nci_recv_frame(struct nfcmrvl_private *priv, struct sk_buff *skb); int nfcmrvl_nci_recv_frame(struct nfcmrvl_private *priv, struct sk_buff *skb);
struct nfcmrvl_private *nfcmrvl_nci_register_dev(enum nfcmrvl_phy phy, struct nfcmrvl_private *nfcmrvl_nci_register_dev(enum nfcmrvl_phy phy,
void *drv_data, void *drv_data,
struct nfcmrvl_if_ops *ops, const struct nfcmrvl_if_ops *ops,
struct device *dev, struct device *dev,
const struct nfcmrvl_platform_data *pdata); const struct nfcmrvl_platform_data *pdata);
......
...@@ -99,7 +99,7 @@ static void nfcmrvl_spi_nci_update_config(struct nfcmrvl_private *priv, ...@@ -99,7 +99,7 @@ static void nfcmrvl_spi_nci_update_config(struct nfcmrvl_private *priv,
drv_data->nci_spi->xfer_speed_hz = config->clk; drv_data->nci_spi->xfer_speed_hz = config->clk;
} }
static struct nfcmrvl_if_ops spi_ops = { static const struct nfcmrvl_if_ops spi_ops = {
.nci_open = nfcmrvl_spi_nci_open, .nci_open = nfcmrvl_spi_nci_open,
.nci_close = nfcmrvl_spi_nci_close, .nci_close = nfcmrvl_spi_nci_close,
.nci_send = nfcmrvl_spi_nci_send, .nci_send = nfcmrvl_spi_nci_send,
......
...@@ -49,7 +49,7 @@ static void nfcmrvl_uart_nci_update_config(struct nfcmrvl_private *priv, ...@@ -49,7 +49,7 @@ static void nfcmrvl_uart_nci_update_config(struct nfcmrvl_private *priv,
config->flow_control); config->flow_control);
} }
static struct nfcmrvl_if_ops uart_ops = { static const struct nfcmrvl_if_ops uart_ops = {
.nci_open = nfcmrvl_uart_nci_open, .nci_open = nfcmrvl_uart_nci_open,
.nci_close = nfcmrvl_uart_nci_close, .nci_close = nfcmrvl_uart_nci_close,
.nci_send = nfcmrvl_uart_nci_send, .nci_send = nfcmrvl_uart_nci_send,
......
...@@ -264,7 +264,7 @@ static int nfcmrvl_usb_nci_send(struct nfcmrvl_private *priv, ...@@ -264,7 +264,7 @@ static int nfcmrvl_usb_nci_send(struct nfcmrvl_private *priv,
return err; return err;
} }
static struct nfcmrvl_if_ops usb_ops = { static const struct nfcmrvl_if_ops usb_ops = {
.nci_open = nfcmrvl_usb_nci_open, .nci_open = nfcmrvl_usb_nci_open,
.nci_close = nfcmrvl_usb_nci_close, .nci_close = nfcmrvl_usb_nci_close,
.nci_send = nfcmrvl_usb_nci_send, .nci_send = nfcmrvl_usb_nci_send,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment