diff options
author | Paul Mundt <lethal@linux-sh.org> | 2012-01-13 11:42:50 +0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2012-01-13 11:42:50 +0400 |
commit | 6d7120a713300283a8b73e7d86cd1bab8b9d1971 (patch) | |
tree | e25b6de9b4bdbbb4430ef5aa6b8919a07333954e /drivers/video/pvr2fb.c | |
parent | bfe75c7e67e5f32bf446a48e0502d06d25b51752 (diff) | |
download | linux-6d7120a713300283a8b73e7d86cd1bab8b9d1971.tar.xz |
video: pvr2fb: Fix up spurious section mismatch warnings.
pvr2fb special cases its init/exit routines which causes spurious section
mismatches. Set the board_driver array __refdata to silence them.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video/pvr2fb.c')
-rw-r--r-- | drivers/video/pvr2fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/pvr2fb.c b/drivers/video/pvr2fb.c index f9975100d56d..3a3fdc62c75b 100644 --- a/drivers/video/pvr2fb.c +++ b/drivers/video/pvr2fb.c @@ -1061,7 +1061,7 @@ static struct pvr2_board { int (*init)(void); void (*exit)(void); char name[16]; -} board_driver[] = { +} board_driver[] __refdata = { #ifdef CONFIG_SH_DREAMCAST { pvr2fb_dc_init, pvr2fb_dc_exit, "Sega DC PVR2" }, #endif |