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

nfc: st21nfca: constify file-scope arrays

Driver only reads len_seq and wait_tab variables.
Signed-off-by: default avatarKrzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7a5e98da
...@@ -76,8 +76,8 @@ struct st21nfca_i2c_phy { ...@@ -76,8 +76,8 @@ struct st21nfca_i2c_phy {
struct mutex phy_lock; struct mutex phy_lock;
}; };
static u8 len_seq[] = { 16, 24, 12, 29 }; static const u8 len_seq[] = { 16, 24, 12, 29 };
static u16 wait_tab[] = { 2, 3, 5, 15, 20, 40}; static const u16 wait_tab[] = { 2, 3, 5, 15, 20, 40};
#define I2C_DUMP_SKB(info, skb) \ #define I2C_DUMP_SKB(info, skb) \
do { \ do { \
......
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