projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
11f39d5
)
samples: vfio-mdev: constify fb ops
author
Jani Nikula
<jani.nikula@intel.com>
Tue, 3 Dec 2019 16:38:53 +0000
(18:38 +0200)
committer
Jani Nikula
<jani.nikula@intel.com>
Tue, 10 Dec 2019 06:52:15 +0000
(08:52 +0200)
Now that the fbops member of struct fb_info is const, we can start
making the ops const as well.
v2: fix typo (Christophe de Dinechin)
Cc: Kirti Wankhede <kwankhede@nvidia.com>
Cc: kvm@vger.kernel.org
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Acked-by: Kirti Wankhede <kwankhede@nvidia.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Link:
https://patchwork.freedesktop.org/patch/msgid/ddb10df1316ef585930cda7718643a580f4fe37b.1575390741.git.jani.nikula@intel.com
samples/vfio-mdev/mdpy-fb.c
patch
|
blob
|
history
diff --git
a/samples/vfio-mdev/mdpy-fb.c
b/samples/vfio-mdev/mdpy-fb.c
index 2719bb2596530b00c93f2aa80fc898a7f4d92cc3..21dbf63d6e415f19a0c795d51d62bd17e7a1f344 100644
(file)
--- a/
samples/vfio-mdev/mdpy-fb.c
+++ b/
samples/vfio-mdev/mdpy-fb.c
@@
-86,7
+86,7
@@
static void mdpy_fb_destroy(struct fb_info *info)
iounmap(info->screen_base);
}
-static struct fb_ops mdpy_fb_ops = {
+static
const
struct fb_ops mdpy_fb_ops = {
.owner = THIS_MODULE,
.fb_destroy = mdpy_fb_destroy,
.fb_setcolreg = mdpy_fb_setcolreg,