-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 208495 b: refs/heads/master c: eb42b04 h: refs/heads/master i: 208493: a948c87 208491: e871fbb 208487: 0420d20 208479: 3b053a3 v: v3
- Loading branch information
Pawel Osciak
authored and
Linus Torvalds
committed
Aug 11, 2010
1 parent
73afdf1
commit 7871046
Showing
6 changed files
with
39 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 4e591ac620269b3f5fb000d75444bbb397576315 | ||
refs/heads/master: eb42b0441bc7fd29066bb7c38ebabe3d0e3ff202 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* arch/arm/plat-samsung/include/plat/fb-core.h | ||
* | ||
* Copyright 2010 Samsung Electronics Co., Ltd. | ||
* Pawel Osciak <p.osciak@samsung.com> | ||
* | ||
* Samsung framebuffer driver core functions | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
#ifndef __ASM_PLAT_FB_CORE_H | ||
#define __ASM_PLAT_FB_CORE_H __FILE__ | ||
|
||
/* | ||
* These functions are only for use with the core support code, such as | ||
* the CPU-specific initialization code. | ||
*/ | ||
|
||
/* Re-define device name depending on support. */ | ||
static inline void s3c_fb_setname(char *name) | ||
{ | ||
#ifdef CONFIG_S3C_DEV_FB | ||
s3c_device_fb.name = name; | ||
#endif | ||
} | ||
|
||
#endif /* __ASM_PLAT_FB_CORE_H */ |