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
6 * Copyright (C) 2012 MIPS Technologies, Inc. All rights reserved.
8 #include <linux/init.h>
11 static struct i2c_board_info __initdata sead3_i2c_devices
[] = {
13 I2C_BOARD_INFO("adt7476", 0x2c),
17 I2C_BOARD_INFO("m41t80", 0x68),
22 static int __init
sead3_i2c_init(void)
26 err
= i2c_register_board_info(0, sead3_i2c_devices
,
27 ARRAY_SIZE(sead3_i2c_devices
));
29 pr_err("sead3-i2c-dev: cannot register board I2C devices\n");
33 arch_initcall(sead3_i2c_init
);