-
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.
- Loading branch information
Ben Dooks
committed
May 20, 2010
1 parent
9cf045d
commit b533e93
Showing
2 changed files
with
22 additions
and
1 deletion.
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: dd1ef1a2a1b91c5bf1d6f45d0a0eaf9233e3570c | ||
refs/heads/master: 1ae35de1c1ac81f8f31879316656b0a66616a4b0 |
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,21 @@ | ||
/* | ||
* Copyright 2010 Ben Dooks <ben-linux@fluff.org> | ||
* | ||
* Dummy framebuffer to allow build for the moment. | ||
* | ||
* 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_ARCH_MACH_REGS_FB_H | ||
#define __ASM_ARCH_MACH_REGS_FB_H __FILE__ | ||
|
||
#include <plat/regs-fb-v4.h> | ||
|
||
static inline unsigned int s3c_fb_pal_reg(unsigned int window, int reg) | ||
{ | ||
return 0x2400 + (window * 256 *4 ) + reg; | ||
} | ||
|
||
#endif /* __ASM_ARCH_MACH_REGS_FB_H */ |