usb: gadget: avoid unusual inline assembly
authorArnd Bergmann <arnd@arndb.de>
Mon, 27 Sep 2021 12:38:20 +0000 (14:38 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 13 Oct 2021 12:03:20 +0000 (14:03 +0200)
commite27bea459d5eaa485ba091e0e051bf4575614d4f
tree92fc3ab1f8b661f5853c9e7e95447f3412c8d38c
parentfde1fbedbaed4e76cef4600d775b185f59b9b568
usb: gadget: avoid unusual inline assembly

clang does not understand the "mrc%?" syntax:

drivers/usb/gadget/udc/pxa25x_udc.c:2330:11: error: invalid % escape in inline assembly string

I don't understand it either, but removing the %? here gets it to build.
This is probably wrong and someone else should do a proper patch.

Any suggestions?

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Link: https://lore.kernel.org/r/20210927123830.1278953-1-arnd@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/udc/pxa25x_udc.c