summaryrefslogtreecommitdiffstats
path: root/drivers/nfc/pn533/i2c.c
diff options
context:
space:
mode:
authorRikard Falkeborn <rikard.falkeborn@gmail.com>2021-10-07 00:47:38 +0200
committerDavid S. Miller <davem@davemloft.net>2021-10-07 14:35:10 +0200
commitbc642817b6d9e058e058a0bba4bb35df19eb2911 (patch)
treea90b53d6d52d07a3f0eba78ff370007e5c472b75 /drivers/nfc/pn533/i2c.c
parentnfc: pn533: Constify serdev_device_ops (diff)
downloadlinux-bc642817b6d9e058e058a0bba4bb35df19eb2911.tar.xz
linux-bc642817b6d9e058e058a0bba4bb35df19eb2911.zip
nfc: pn533: Constify pn533_phy_ops
Neither the driver or the core modifies the pn533_phy_ops struct, so make them const to allow the compiler to put the static structs in read-only memory. Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/nfc/pn533/i2c.c')
-rw-r--r--drivers/nfc/pn533/i2c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nfc/pn533/i2c.c b/drivers/nfc/pn533/i2c.c
index f5610b6b9894..673eb5e9b887 100644
--- a/drivers/nfc/pn533/i2c.c
+++ b/drivers/nfc/pn533/i2c.c
@@ -156,7 +156,7 @@ static irqreturn_t pn533_i2c_irq_thread_fn(int irq, void *data)
return IRQ_HANDLED;
}
-static struct pn533_phy_ops i2c_phy_ops = {
+static const struct pn533_phy_ops i2c_phy_ops = {
.send_frame = pn533_i2c_send_frame,
.send_ack = pn533_i2c_send_ack,
.abort_cmd = pn533_i2c_abort_cmd,