-
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: 77756 b: refs/heads/master c: e88ed82 h: refs/heads/master v: v3
- Loading branch information
Paul Mundt
committed
Jan 28, 2008
1 parent
819b214
commit f9524ab
Showing
3 changed files
with
23 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: c2672f62e734292bca4ce4ab5e89c7e04ecb70dc | ||
refs/heads/master: e88ed82ef8c385f84333cb8f30aec6dcb1f9e76f |
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,4 +1,11 @@ | ||
# | ||
# Makefile for the Linux/SuperH SH-5 backends. | ||
# | ||
obj-y := entry.o probe.o switchto.o | ||
|
||
obj-$(CONFIG_SH_FPU) += fpu.o | ||
obj-$(CONFIG_KALLSYMS) += unwind.o | ||
|
||
# CPU subtype setup | ||
obj-$(CONFIG_CPU_SUBTYPE_SH5_101) += setup-sh5-101.o | ||
obj-$(CONFIG_CPU_SUBTYPE_SH5_103) += setup-sh5-101.o |
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,15 @@ | ||
/* | ||
* SH5-101 Setup | ||
* | ||
* Copyright (C) 2007 Paul Mundt | ||
* | ||
* This file is subject to the terms and conditions of the GNU General Public | ||
* License. See the file "COPYING" in the main directory of this archive | ||
* for more details. | ||
*/ | ||
#include <linux/init.h> | ||
|
||
void __init plat_irq_setup(void) | ||
{ | ||
/* do nothing - all IRL interrupts are handled by the board code */ | ||
} |