Message ID | f4b0278d16982adaffdae1f30a369a24052c048d.1657553887.git.geert@linux-m68k.org |
---|---|
State | New |
Headers | show |
Series | video: fbdev: cirrusfb: Make cirrusfb_zorro_unregister() static | expand |
diff --git a/drivers/video/fbdev/cirrusfb.c b/drivers/video/fbdev/cirrusfb.c index 51e072c03e1c670b..a41a75841e10ef06 100644 --- a/drivers/video/fbdev/cirrusfb.c +++ b/drivers/video/fbdev/cirrusfb.c @@ -2301,7 +2301,7 @@ static int cirrusfb_zorro_register(struct zorro_dev *z, return error; } -void cirrusfb_zorro_unregister(struct zorro_dev *z) +static void cirrusfb_zorro_unregister(struct zorro_dev *z) { struct fb_info *info = zorro_get_drvdata(z);
cirrusfb_zorro_unregister() is only used locally, hence make it static. Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> --- drivers/video/fbdev/cirrusfb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)