1
0
Fork 0

parisc/uaccess: fix sparse errors

virtio wants to read bitwise types from userspace using get_user.  At the
moment this triggers sparse errors, since the value is passed through an
integer.

Fix that up using __force.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Helge Deller <deller@gmx.de>
Signed-off-by: Helge Deller <deller@gmx.de>
wifi-calibration
Michael S. Tsirkin 2015-01-06 17:44:10 +02:00 committed by Helge Deller
parent cf635f8dfd
commit 876b2a0083
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ struct exception_data {
} \
} \
\
(x) = (__typeof__(*(ptr))) __gu_val; \
(x) = (__force __typeof__(*(ptr))) __gu_val; \
__gu_err; \
})