Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

DRM: Radeon: Fix section mismatch.

WARNING: drivers/gpu/drm/radeon/radeon.o(.text+0x5d1fc): Section mismatch in reference from the function radeon_get_clock_info() to the function .devinit.text:radeon_read_clocks_OF()
The function radeon_get_clock_info() references
the function __devinit radeon_read_clocks_OF().
This is often because radeon_get_clock_info lacks a __devinit
annotation or the annotation of radeon_read_clocks_OF is wrong.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Cc: dri-devel@lists.freedesktop.org
Cc: linux-kernel@vger.kernel.org
Cc: linux-mips@linux-mips.org
Signed-off-by: Dave Airlie <airlied@redhat.com>

authored by

Ralf Baechle and committed by
Dave Airlie
ee276291 0aff47f2

+2 -2
+2 -2
drivers/gpu/drm/radeon/radeon_clocks.c
··· 96 96 * Read XTAL (ref clock), SCLK and MCLK from Open Firmware device 97 97 * tree. Hopefully, ATI OF driver is kind enough to fill these 98 98 */ 99 - static bool __devinit radeon_read_clocks_OF(struct drm_device *dev) 99 + static bool radeon_read_clocks_OF(struct drm_device *dev) 100 100 { 101 101 struct radeon_device *rdev = dev->dev_private; 102 102 struct device_node *dp = rdev->pdev->dev.of_node; ··· 166 166 return true; 167 167 } 168 168 #else 169 - static bool __devinit radeon_read_clocks_OF(struct drm_device *dev) 169 + static bool radeon_read_clocks_OF(struct drm_device *dev) 170 170 { 171 171 return false; 172 172 }