Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 144941
b: refs/heads/master
c: b6d57ae
h: refs/heads/master
i:
  144939: 696839d
v: v3
  • Loading branch information
Dmitri Vorobiev authored and Ralf Baechle committed May 14, 2009
1 parent 2f46036 commit df67e7a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ae5373874a393d36d0fbc1a21c1b81e52736a4f2
refs/heads/master: b6d57ae97af3c38d28f066b5e47b7d58e468728a
14 changes: 7 additions & 7 deletions trunk/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 df67e7a

Please sign in to comment.