diff options
author | Helge Deller <deller@gmx.de> | 2022-07-15 11:24:27 +0300 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2022-07-18 08:56:40 +0300 |
commit | 075fbf0ab8ddd04365918edbf5d906295105f3a0 (patch) | |
tree | 5842958e3757a00413344fc6fa38bde2676a6f35 /drivers/video/fbdev/omap/omapfb_main.c | |
parent | ffcc5b265799f213612984aa27d3711dbc4704b6 (diff) | |
download | linux-075fbf0ab8ddd04365918edbf5d906295105f3a0.tar.xz |
video: fbdev: omapfb: Unexport omap*_update_window_async()
There is no need to EXPORT the functions hwa742_update_window_async()
and omapfb_update_window_async() since they are not used anywhere inside
or outside the kernel tree.
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'drivers/video/fbdev/omap/omapfb_main.c')
-rw-r--r-- | drivers/video/fbdev/omap/omapfb_main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/video/fbdev/omap/omapfb_main.c b/drivers/video/fbdev/omap/omapfb_main.c index 292fcb0a24fc..dfb4ddc45701 100644 --- a/drivers/video/fbdev/omap/omapfb_main.c +++ b/drivers/video/fbdev/omap/omapfb_main.c @@ -668,7 +668,7 @@ static int omapfb_set_par(struct fb_info *fbi) return r; } -int omapfb_update_window_async(struct fb_info *fbi, +static int omapfb_update_window_async(struct fb_info *fbi, struct omapfb_update_window *win, void (*callback)(void *), void *callback_data) @@ -714,7 +714,6 @@ int omapfb_update_window_async(struct fb_info *fbi, return fbdev->ctrl->update_window(fbi, win, callback, callback_data); } -EXPORT_SYMBOL(omapfb_update_window_async); static int omapfb_update_win(struct fb_info *fbi, struct omapfb_update_window *win) |