nfc: s3fwrn5: constify s3fwrn5_phy_ops structures
The s3fwrn5_phy_ops structure is never modified, so declare it as const. Done with the help of Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Acked-by: Robert Baldyga <r.baldyga@samsung.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:

committed by
Samuel Ortiz

parent
59df9bb25c
commit
c6b5df0daf
@@ -44,7 +44,7 @@ struct s3fwrn5_info {
|
||||
void *phy_id;
|
||||
struct device *pdev;
|
||||
|
||||
struct s3fwrn5_phy_ops *phy_ops;
|
||||
const struct s3fwrn5_phy_ops *phy_ops;
|
||||
unsigned int max_payload;
|
||||
|
||||
struct s3fwrn5_fw_info fw_info;
|
||||
@@ -90,7 +90,7 @@ static inline int s3fwrn5_write(struct s3fwrn5_info *info, struct sk_buff *skb)
|
||||
}
|
||||
|
||||
int s3fwrn5_probe(struct nci_dev **ndev, void *phy_id, struct device *pdev,
|
||||
struct s3fwrn5_phy_ops *phy_ops, unsigned int max_payload);
|
||||
const struct s3fwrn5_phy_ops *phy_ops, unsigned int max_payload);
|
||||
void s3fwrn5_remove(struct nci_dev *ndev);
|
||||
|
||||
int s3fwrn5_recv_frame(struct nci_dev *ndev, struct sk_buff *skb,
|
||||
|
Reference in New Issue
Block a user