diff options
author | Ben Dooks (Codethink) <ben.dooks@codethink.co.uk> | 2019-12-19 22:13:34 +0300 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2019-12-20 00:41:54 +0300 |
commit | fd7bba685e7d9ebc45de2a7e9bd974fdd615abdf (patch) | |
tree | e23133ddddde386b0c41a79780be29e971887209 | |
parent | cbe821a20f3d46b419caa6fccf9e9812fff0e392 (diff) | |
download | linux-fd7bba685e7d9ebc45de2a7e9bd974fdd615abdf.tar.xz |
Input: apbps2 - add __iomem to register struct
Add __iomem to the apbps2_priv.regs field to make the numerous
warnings about differing address spaces go away. Fixes warnings
such as:
drivers/input/serio/apbps2.c:65:26: warning: incorrect type in argument 1 (different address spaces)
drivers/input/serio/apbps2.c:65:26: expected void const volatile [noderef] <asn:2> *addr
drivers/input/serio/apbps2.c:65:26: got unsigned int [noderef] *
drivers/input/serio/apbps2.c:65:26: warning: incorrect type in argument 1 (different address spaces)
drivers/input/serio/apbps2.c:65:26: expected void const volatile [noderef] <asn:2> *addr
drivers/input/serio/apbps2.c:65:26: got unsigned int [noderef] *
drivers/input/serio/apbps2.c:65:26: warning: incorrect type in argument 1 (different address spaces)
drivers/input/serio/apbps2.c:65:26: expected void const volatile [noderef] <asn:2> *addr
drivers/input/serio/apbps2.c:65:26: got unsigned int [noderef] *
drivers/input/serio/apbps2.c:65:26: warning: incorrect type in argument 1 (different address spaces)
drivers/input/serio/apbps2.c:65:26: expected void const volatile [noderef] <asn:2> *addr
[rest snipped]
Signed-off-by: Ben Dooks (Codethink) <ben.dooks@codethink.co.uk>
Link: https://lore.kernel.org/r/20191217122507.2157454-1-ben.dooks@codethink.co.uk
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r-- | drivers/input/serio/apbps2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/input/serio/apbps2.c b/drivers/input/serio/apbps2.c index f290d5d146c3..594ac4e6f8ea 100644 --- a/drivers/input/serio/apbps2.c +++ b/drivers/input/serio/apbps2.c @@ -51,7 +51,7 @@ struct apbps2_regs { struct apbps2_priv { struct serio *io; - struct apbps2_regs *regs; + struct apbps2_regs __iomem *regs; }; static int apbps2_idx; |