aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/mti-sead3/sead3-i2c.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/mti-sead3/sead3-i2c.c')
-rw-r--r--arch/mips/mti-sead3/sead3-i2c.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/arch/mips/mti-sead3/sead3-i2c.c b/arch/mips/mti-sead3/sead3-i2c.c
deleted file mode 100644
index 795ae83894e0..000000000000
--- a/arch/mips/mti-sead3/sead3-i2c.c
+++ /dev/null
@@ -1,31 +0,0 @@
1/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
6 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
7 */
8#include <linux/init.h>
9#include <linux/platform_device.h>
10
11struct resource sead3_i2c_resources[] = {
12 {
13 .start = 0x805200,
14 .end = 0x8053ff,
15 .flags = IORESOURCE_MEM,
16 },
17};
18
19static struct platform_device sead3_i2c_device = {
20 .name = "sead3-i2c",
21 .id = 0,
22 .num_resources = ARRAY_SIZE(sead3_i2c_resources),
23 .resource = sead3_i2c_resources,
24};
25
26static int __init sead3_i2c_init(void)
27{
28 return platform_device_register(&sead3_i2c_device);
29}
30
31device_initcall(sead3_i2c_init);