diff options
author | Tomasz Figa <t.figa@samsung.com> | 2014-07-02 13:40:44 -0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2014-07-18 15:32:18 -0400 |
commit | d78c16ccde96eddf42942c093b241b5e5135b777 (patch) | |
tree | 3bedb6c54ec937d57d8d9e3f473739a78c1ae5ad /arch/arm/plat-samsung/s5p-sleep.S | |
parent | 09ee2dac4c07016c6bc7577152822996c9a7c122 (diff) |
ARM: SAMSUNG: Remove remaining legacy code
After refactoring suspend/resume, which was last part with dependencies
on legacy code, all Kconfig symbols related to Samsung ATAGS support can
be deselected and more unused code removed. This includes most of s5p-*
code as well, as s5pv210 was their last user.
Signed-off-by: Tomasz Figa <t.figa@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/plat-samsung/s5p-sleep.S')
-rw-r--r-- | arch/arm/plat-samsung/s5p-sleep.S | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/arch/arm/plat-samsung/s5p-sleep.S b/arch/arm/plat-samsung/s5p-sleep.S deleted file mode 100644 index 25c68ceb9e2b..000000000000 --- a/arch/arm/plat-samsung/s5p-sleep.S +++ /dev/null | |||
@@ -1,45 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2011 Samsung Electronics Co., Ltd. | ||
3 | * http://www.samsung.com | ||
4 | * | ||
5 | * Common S5P Sleep Code | ||
6 | * Based on S3C64XX sleep code by: | ||
7 | * Ben Dooks, (c) 2008 Simtec Electronics | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License as published by | ||
11 | * the Free Software Foundation; either version 2 of the License, or | ||
12 | * (at your option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with this program; if not, write to the Free Software | ||
21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
22 | */ | ||
23 | |||
24 | #include <linux/linkage.h> | ||
25 | |||
26 | .data | ||
27 | .align | ||
28 | |||
29 | /* | ||
30 | * sleep magic, to allow the bootloader to check for an valid | ||
31 | * image to resume to. Must be the first word before the | ||
32 | * s3c_cpu_resume entry. | ||
33 | */ | ||
34 | |||
35 | .word 0x2bedf00d | ||
36 | |||
37 | /* | ||
38 | * s3c_cpu_resume | ||
39 | * | ||
40 | * resume code entry for bootloader to call | ||
41 | */ | ||
42 | |||
43 | ENTRY(s3c_cpu_resume) | ||
44 | b cpu_resume | ||
45 | ENDPROC(s3c_cpu_resume) | ||