Skip to content

Commit

Permalink
MIPS: gbe: Make needlessly global symbols static in drivers/video/gbe…
Browse files Browse the repository at this point in the history
…fb.c

The following symbols are needlessly defined global:

default_mode
default_var
gbe_mem_phys
gbe_turn_off
gbefb_exit
gbefb_init
gbefb_setup

This error was noticed by namespacecheck when compiling ip32_defconfig.

This patch makes the symbols static.

Signed-off-by: Dmitri Vorobiev <[email protected]>
Signed-off-by: Ralf Baechle <[email protected]>
  • Loading branch information
dmvo authored and ralfbaechle committed May 14, 2009
1 parent ae53738 commit b6d57ae
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions drivers/video/gbefb.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ struct gbefb_par {
static unsigned int gbe_mem_size = CONFIG_FB_GBE_MEM * 1024*1024;
static void *gbe_mem;
static dma_addr_t gbe_dma_addr;
unsigned long gbe_mem_phys;
static unsigned long gbe_mem_phys;

static struct {
uint16_t *cpu;
Expand Down Expand Up @@ -185,8 +185,8 @@ static struct fb_videomode default_mode_LCD __initdata = {
.vmode = FB_VMODE_NONINTERLACED,
};

struct fb_videomode *default_mode __initdata = &default_mode_CRT;
struct fb_var_screeninfo *default_var __initdata = &default_var_CRT;
static struct fb_videomode *default_mode __initdata = &default_mode_CRT;
static struct fb_var_screeninfo *default_var __initdata = &default_var_CRT;

static int flat_panel_enabled = 0;

Expand All @@ -205,7 +205,7 @@ static void gbe_reset(void)
* console.
*/

void gbe_turn_off(void)
static void gbe_turn_off(void)
{
int i;
unsigned int val, x, y, vpixen_off;
Expand Down Expand Up @@ -1097,7 +1097,7 @@ static void gbefb_create_sysfs(struct device *dev)
* Initialization
*/

int __init gbefb_setup(char *options)
static int __init gbefb_setup(char *options)
{
char *this_opt;

Expand Down Expand Up @@ -1283,7 +1283,7 @@ static struct platform_driver gbefb_driver = {

static struct platform_device *gbefb_device;

int __init gbefb_init(void)
static int __init gbefb_init(void)
{
int ret = platform_driver_register(&gbefb_driver);
if (!ret) {
Expand All @@ -1301,7 +1301,7 @@ int __init gbefb_init(void)
return ret;
}

void __exit gbefb_exit(void)
static void __exit gbefb_exit(void)
{
platform_device_unregister(gbefb_device);
platform_driver_unregister(&gbefb_driver);
Expand Down

0 comments on commit b6d57ae

Please sign in to comment.