i2c.c (3a8761c0272c961c707e5af2eb0179adf3ef7e14) | i2c.c (e4c060db2c13f10de09101afc564763f9fd0019a) |
---|---|
1/* 2 * Helper module for board specific I2C bus registration 3 * 4 * Copyright (C) 2009 Nokia Corporation. 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 * version 2 as published by the Free Software Foundation. --- 7 unchanged lines hidden (view full) --- 16 * along with this program; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 18 * 02110-1301 USA 19 * 20 */ 21 22#include <linux/i2c-omap.h> 23#include <mach/mux.h> | 1/* 2 * Helper module for board specific I2C bus registration 3 * 4 * Copyright (C) 2009 Nokia Corporation. 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 * version 2 as published by the Free Software Foundation. --- 7 unchanged lines hidden (view full) --- 16 * along with this program; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 18 * 02110-1301 USA 19 * 20 */ 21 22#include <linux/i2c-omap.h> 23#include <mach/mux.h> |
24#include <plat/cpu.h> | 24#include "soc.h" |
25 26#include "../plat-omap/i2c.h" 27 28#define OMAP_I2C_SIZE 0x3f 29#define OMAP1_I2C_BASE 0xfffb3800 30#define OMAP1_INT_I2C (32 + 4) 31 32static const char name[] = "omap_i2c"; --- 58 unchanged lines hidden --- | 25 26#include "../plat-omap/i2c.h" 27 28#define OMAP_I2C_SIZE 0x3f 29#define OMAP1_I2C_BASE 0xfffb3800 30#define OMAP1_INT_I2C (32 + 4) 31 32static const char name[] = "omap_i2c"; --- 58 unchanged lines hidden --- |