Include appropriate header file drm/radeon/radeon_asic.h in drm/radeon/radeon_atombios.c because it uses the functions whose prototype declarations is present in the header file.
This eliminates the following warnings in drm/radeon/radeon_atombios.c: drivers/gpu/drm/radeon/radeon_atombios.c:2949:10: warning: no previous prototype for ?radeon_atom_get_engine_clock? [-Wmissing-prototypes] drivers/gpu/drm/radeon/radeon_atombios.c:2958:10: warning: no previous prototype for ?radeon_atom_get_memory_clock? [-Wmissing-prototypes] drivers/gpu/drm/radeon/radeon_atombios.c:2967:6: warning: no previous prototype for ?radeon_atom_set_engine_clock? [-Wmissing-prototypes] drivers/gpu/drm/radeon/radeon_atombios.c:2978:6: warning: no previous prototype for ?radeon_atom_set_memory_clock? [-Wmissing-prototypes] Signed-off-by: Rashika Kheria <rashika.kheria at gmail.com> Reviewed-by: Josh Triplett <josh at joshtriplett.org> --- drivers/gpu/drm/radeon/radeon_atombios.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/radeon/radeon_atombios.c b/drivers/gpu/drm/radeon/radeon_atombios.c index 39f1fd6..b3bf270 100644 --- a/drivers/gpu/drm/radeon/radeon_atombios.c +++ b/drivers/gpu/drm/radeon/radeon_atombios.c @@ -29,6 +29,7 @@ #include "atom.h" #include "atombios.h" +#include "radeon_asic.h" #include "atom-bits.h" /* from radeon_encoder.c */ -- 1.7.9.5