Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
c896ba88
Commit
c896ba88
authored
Jan 21, 2013
by
Kukjin Kim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: S3C2412: Remove useless codes mach-s3c2412/gpio.c
Signed-off-by:
Kukjin Kim
<
kgene.kim@samsung.com
>
parent
82c18712
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
68 deletions
+0
-68
arch/arm/mach-s3c2412/gpio.c
arch/arm/mach-s3c2412/gpio.c
+0
-62
arch/arm/mach-s3c24xx/include/mach/hardware.h
arch/arm/mach-s3c24xx/include/mach/hardware.h
+0
-6
No files found.
arch/arm/mach-s3c2412/gpio.c
deleted
100644 → 0
View file @
82c18712
/* linux/arch/arm/mach-s3c2412/gpio.c
*
* Copyright (c) 2007 Simtec Electronics
* Ben Dooks <ben@simtec.co.uk>
*
* http://armlinux.simtec.co.uk/.
*
* S3C2412/S3C2413 specific GPIO support
*
* 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.
*/
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/module.h>
#include <linux/interrupt.h>
#include <linux/gpio.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>
#include <mach/regs-gpio.h>
#include <mach/hardware.h>
#include <plat/gpio-core.h>
int
s3c2412_gpio_set_sleepcfg
(
unsigned
int
pin
,
unsigned
int
state
)
{
struct
samsung_gpio_chip
*
chip
=
samsung_gpiolib_getchip
(
pin
);
unsigned
long
offs
=
pin
-
chip
->
chip
.
base
;
unsigned
long
flags
;
unsigned
long
slpcon
;
offs
*=
2
;
if
(
pin
<
S3C2410_GPB
(
0
))
return
-
EINVAL
;
if
(
pin
>=
S3C2410_GPF
(
0
)
&&
pin
<=
S3C2410_GPG
(
16
))
return
-
EINVAL
;
if
(
pin
>
S3C2410_GPH
(
16
))
return
-
EINVAL
;
local_irq_save
(
flags
);
slpcon
=
__raw_readl
(
chip
->
base
+
0x0C
);
slpcon
&=
~
(
3
<<
offs
);
slpcon
|=
state
<<
offs
;
__raw_writel
(
slpcon
,
chip
->
base
+
0x0C
);
local_irq_restore
(
flags
);
return
0
;
}
EXPORT_SYMBOL
(
s3c2412_gpio_set_sleepcfg
);
arch/arm/mach-s3c24xx/include/mach/hardware.h
View file @
c896ba88
...
...
@@ -23,12 +23,6 @@ extern int s3c2440_set_dsc(unsigned int pin, unsigned int value);
#endif
/* CONFIG_CPU_S3C2440 */
#ifdef CONFIG_CPU_S3C2412
extern
int
s3c2412_gpio_set_sleepcfg
(
unsigned
int
pin
,
unsigned
int
state
);
#endif
/* CONFIG_CPU_S3C2412 */
#endif
/* __ASSEMBLY__ */
#include <asm/sizes.h>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment