mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
vfio-ccw: make vfio_ccw_async_region_ops static
Since vfio_ccw_async_region_ops is not exported and has no reason to be
globally visible make it static to avoid the following sparse warning:
drivers/s390/cio/vfio_ccw_async.c:73:30: warning: symbol 'vfio_ccw_async_region_ops' was not declared. Should it be static?
Fixes: d5afd5d135
("vfio-ccw: add handling for async channel instructions")
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
This commit is contained in:
parent
943dd5fa70
commit
8480657280
@ -70,7 +70,7 @@ static void vfio_ccw_async_region_release(struct vfio_ccw_private *private,
|
||||
|
||||
}
|
||||
|
||||
const struct vfio_ccw_regops vfio_ccw_async_region_ops = {
|
||||
static const struct vfio_ccw_regops vfio_ccw_async_region_ops = {
|
||||
.read = vfio_ccw_async_region_read,
|
||||
.write = vfio_ccw_async_region_write,
|
||||
.release = vfio_ccw_async_region_release,
|
||||
|
Loading…
Reference in New Issue
Block a user