From: Sam Ravnborg Date: Fri, 7 Aug 2020 18:05:47 +0000 (+0200) Subject: drm/mgag200: fix build on alpha arch X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=018315d399fcc0407c4c160f24ffd60a36ee30c8;p=linux.git drm/mgag200: fix build on alpha arch When building imgag200 for the alpha architecture it fails like this: mgag200_drv.c:233:9: error: implicit declaration of function ‘vmalloc’ 233 | bios = vmalloc(size); | ^~~~~~~ | kmalloc When building for other architectures vmalloc.h is pulled in via some other header file - for example asm-generic/io.h. Use an explicit include of vmalloc.h to fix the build. Signed-off-by: Sam Ravnborg Reviewed-by: Daniel Vetter Fixes: e20dfd27f7aa ("drm/mgag200: Add support for G200 desktop cards") Cc: Thomas Zimmermann Cc: Egbert Eich Cc: Takashi Iwai Cc: Lyude Paul Link: https://patchwork.freedesktop.org/patch/msgid/20200807180547.GA923146@ravnborg.org --- diff --git a/drivers/gpu/drm/mgag200/mgag200_drv.c b/drivers/gpu/drm/mgag200/mgag200_drv.c index 09170d46aa53b..b282b0e42c2df 100644 --- a/drivers/gpu/drm/mgag200/mgag200_drv.c +++ b/drivers/gpu/drm/mgag200/mgag200_drv.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include