Commit 78d27422 authored by Benjamin Herrenschmidt's avatar Benjamin Herrenschmidt Committed by Linus Torvalds

[PATCH] Fix building both old & new radeonfb's

This fixes the build of "allyesconfig", old and new radeonfb's would
collide on some symbols.
parent f67020a4
......@@ -212,7 +212,7 @@ typedef struct {
/* these common regs are cleared before mode setting so they do not
* interfere with anything
*/
reg_val common_regs[] = {
static reg_val common_regs[] = {
{ OVR_CLR, 0 },
{ OVR_WID_LEFT_RIGHT, 0 },
{ OVR_WID_TOP_BOTTOM, 0 },
......@@ -224,7 +224,7 @@ reg_val common_regs[] = {
{ CAP0_TRIG_CNTL, 0 },
};
reg_val common_regs_m6[] = {
static reg_val common_regs_m6[] = {
{ OVR_CLR, 0 },
{ OVR_WID_LEFT_RIGHT, 0 },
{ OVR_WID_TOP_BOTTOM, 0 },
......
......@@ -138,6 +138,8 @@ extern int tx3912fb_init(void);
extern int tx3912fb_setup(char*);
extern int radeonfb_init(void);
extern int radeonfb_setup(char*);
extern int radeonfb_old_init(void);
extern int radeonfb_old_setup(char*);
extern int e1355fb_init(void);
extern int e1355fb_setup(char*);
extern int pvr2fb_init(void);
......@@ -226,7 +228,7 @@ static struct {
{ "radeonfb", radeonfb_init, radeonfb_setup },
#endif
#ifdef CONFIG_FB_RADEON_OLD
{ "radeonfb_old", radeonfb_init, radeonfb_setup },
{ "radeonfb_old", radeonfb_old_init, radeonfb_old_setup },
#endif
#ifdef CONFIG_FB_CONTROL
{ "controlfb", control_init, control_setup },
......
......@@ -234,7 +234,7 @@ typedef struct {
/* these common regs are cleared before mode setting so they do not
* interfere with anything
*/
reg_val common_regs[] = {
static reg_val common_regs[] = {
{ OVR_CLR, 0 },
{ OVR_WID_LEFT_RIGHT, 0 },
{ OVR_WID_TOP_BOTTOM, 0 },
......@@ -246,7 +246,7 @@ reg_val common_regs[] = {
{ CAP0_TRIG_CNTL, 0 },
};
reg_val common_regs_m6[] = {
static reg_val common_regs_m6[] = {
{ OVR_CLR, 0 },
{ OVR_WID_LEFT_RIGHT, 0 },
{ OVR_WID_TOP_BOTTOM, 0 },
......@@ -3134,19 +3134,19 @@ static struct pci_driver radeonfb_driver = {
};
int __init radeonfb_init (void)
int __init radeonfb_old_init (void)
{
return pci_module_init (&radeonfb_driver);
}
void __exit radeonfb_exit (void)
void __exit radeonfb_old_exit (void)
{
pci_unregister_driver (&radeonfb_driver);
}
int __init radeonfb_setup (char *options)
int __init radeonfb_old_setup (char *options)
{
char *this_opt;
......@@ -3174,8 +3174,8 @@ int __init radeonfb_setup (char *options)
}
#ifdef MODULE
module_init(radeonfb_init);
module_exit(radeonfb_exit);
module_init(radeonfb_old_init);
module_exit(radeonfb_old_exit);
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment