forked from torvalds/linux
-
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.
This patch renames gpio related registers from s5pc1xx to s5pc100 to better match the plat-s5p framework style. GPIO_MP* defines now used anywhere thus has been removed. Signed-off-by: Marek Szyprowski <[email protected]> Signed-off-by: Kyungmin Park <[email protected]> Signed-off-by: Ben Dooks <[email protected]>
- Loading branch information
Showing
2 changed files
with
46 additions
and
57 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
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 |
---|---|---|
|
@@ -3,11 +3,11 @@ | |
* Copyright 2009 Samsung Electronics Co. | ||
* Byungho Min <[email protected]> | ||
* | ||
* S5PC1XX - GPIO register definitions | ||
* S5PC100 - GPIO register definitions | ||
*/ | ||
|
||
#ifndef __ASM_PLAT_S5PC1XX_REGS_GPIO_H | ||
#define __ASM_PLAT_S5PC1XX_REGS_GPIO_H __FILE__ | ||
#ifndef __ASM_MACH_S5PC100_REGS_GPIO_H | ||
#define __ASM_MACH_S5PC100_REGS_GPIO_H __FILE__ | ||
|
||
#include <mach/map.h> | ||
|
||
|
@@ -66,5 +66,5 @@ | |
#define S5PC100_GPx_OUTPUT(__gpio) (0x1 << ((__gpio) * 4)) | ||
#define S5PC100_GPx_CONMASK(__gpio) (0xf << ((__gpio) * 4)) | ||
|
||
#endif /* __ASM_PLAT_S5PC1XX_REGS_GPIO_H */ | ||
#endif /* __ASM_MACH_S5PC100_REGS_GPIO_H */ | ||
|