diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-10-18 02:14:22 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-10-18 02:14:22 +0200 |
commit | 06dc10eae55b5ceabfef287a7e5f16ceea204aa0 (patch) | |
tree | 9e78d4dbb2ca13c0fb485e00ade54c31fea0fbd6 /include | |
parent | Merge tag 'probes-fixes-v6.6-rc6' of git://git.kernel.org/pub/scm/linux/kerne... (diff) | |
parent | fbdev: core: syscopyarea: fix sloppy typing (diff) | |
download | linux-06dc10eae55b5ceabfef287a7e5f16ceea204aa0.tar.xz linux-06dc10eae55b5ceabfef287a7e5f16ceea204aa0.zip |
Merge tag 'fbdev-for-6.6-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev
Pull fbdev fixes and cleanups from Helge Deller:
"Various minor fixes, cleanups and annotations for atyfb, sa1100fb,
omapfb, uvesafb and mmp"
* tag 'fbdev-for-6.6-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev:
fbdev: core: syscopyarea: fix sloppy typing
fbdev: core: cfbcopyarea: fix sloppy typing
fbdev: uvesafb: Call cn_del_callback() at the end of uvesafb_exit()
fbdev: uvesafb: Remove uvesafb_exec() prototype from include/video/uvesafb.h
fbdev: sa1100fb: mark sa1100fb_init() static
fbdev: omapfb: fix some error codes
fbdev: atyfb: only use ioremap_uc() on i386 and ia64
fbdev: mmp: Annotate struct mmp_path with __counted_by
fbdev: mmp: Annotate struct mmphw_ctrl with __counted_by
Diffstat (limited to 'include')
-rw-r--r-- | include/video/mmp_disp.h | 2 | ||||
-rw-r--r-- | include/video/uvesafb.h | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/include/video/mmp_disp.h b/include/video/mmp_disp.h index 77252cb46361..a722dcbf5073 100644 --- a/include/video/mmp_disp.h +++ b/include/video/mmp_disp.h @@ -231,7 +231,7 @@ struct mmp_path { /* layers */ int overlay_num; - struct mmp_overlay overlays[]; + struct mmp_overlay overlays[] __counted_by(overlay_num); }; extern struct mmp_path *mmp_get_path(const char *name); diff --git a/include/video/uvesafb.h b/include/video/uvesafb.h index 8d2a3bfc8dac..47d96e75e8ef 100644 --- a/include/video/uvesafb.h +++ b/include/video/uvesafb.h @@ -109,8 +109,6 @@ struct uvesafb_ktask { u32 ack; }; -static int uvesafb_exec(struct uvesafb_ktask *tsk); - #define UVESAFB_EXACT_RES 1 #define UVESAFB_EXACT_DEPTH 2 |