Commit 405b8448 authored by Alexander Shishkin's avatar Alexander Shishkin Committed by Greg Kroah-Hartman

usb: gadget: ci13xxx: fix the context of register map

The regmap field is an array of register pointers, not the other way
around.
Signed-off-by: default avatarAlexander Shishkin <alexander.shishkin@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 177a8300
...@@ -122,7 +122,7 @@ struct hw_bank { ...@@ -122,7 +122,7 @@ struct hw_bank {
void __iomem *cap; /* bus map offset + CAP offset */ void __iomem *cap; /* bus map offset + CAP offset */
void __iomem *op; /* bus map offset + OP offset */ void __iomem *op; /* bus map offset + OP offset */
size_t size; /* bank size */ size_t size; /* bank size */
void *__iomem *regmap; void __iomem **regmap;
}; };
/* CI13XXX UDC descriptor & global resources */ /* CI13XXX UDC descriptor & global resources */
......
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