Merge tag 'renesas-soc-fixes2-for-v3.19' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / arch / mips / sibyte / swarm / swarm-i2c.c
1 /*
2 * Broadcom BCM91250A (SWARM), etc. I2C platform setup.
3 *
4 * Copyright (c) 2008 Maciej W. Rozycki
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12 #include <linux/i2c.h>
13 #include <linux/init.h>
14 #include <linux/kernel.h>
15
16
17 static struct i2c_board_info swarm_i2c_info1[] __initdata = {
18 {
19 I2C_BOARD_INFO("m41t81", 0x68),
20 },
21 };
22
23 static int __init swarm_i2c_init(void)
24 {
25 int err;
26
27 err = i2c_register_board_info(1, swarm_i2c_info1,
28 ARRAY_SIZE(swarm_i2c_info1));
29 if (err < 0)
30 printk(KERN_ERR
31 "swarm-i2c: cannot register board I2C devices\n");
32 return err;
33 }
34
35 arch_initcall(swarm_i2c_init);
This page took 0.032963 seconds and 5 git commands to generate.