i2c-hydra.c (b65b34895437915f411882dd40d704eb0863ffb0) | i2c-hydra.c (2178218027e4da0608219fae1d02e5c88f4e560d) |
---|---|
1/* 2 i2c Support for the Apple `Hydra' Mac I/O 3 4 Copyright (c) 1999-2004 Geert Uytterhoeven <geert@linux-m68k.org> 5 6 Based on i2c Support for Via Technologies 82C586B South Bridge 7 Copyright (c) 1998, 1999 Kyösti Mälkki <kmalkki@cc.hut.fi> 8 --- 14 unchanged lines hidden (view full) --- 23 24#include <linux/kernel.h> 25#include <linux/module.h> 26#include <linux/pci.h> 27#include <linux/types.h> 28#include <linux/i2c.h> 29#include <linux/i2c-algo-bit.h> 30#include <linux/init.h> | 1/* 2 i2c Support for the Apple `Hydra' Mac I/O 3 4 Copyright (c) 1999-2004 Geert Uytterhoeven <geert@linux-m68k.org> 5 6 Based on i2c Support for Via Technologies 82C586B South Bridge 7 Copyright (c) 1998, 1999 Kyösti Mälkki <kmalkki@cc.hut.fi> 8 --- 14 unchanged lines hidden (view full) --- 23 24#include <linux/kernel.h> 25#include <linux/module.h> 26#include <linux/pci.h> 27#include <linux/types.h> 28#include <linux/i2c.h> 29#include <linux/i2c-algo-bit.h> 30#include <linux/init.h> |
31#include <asm/io.h> | 31#include <linux/io.h> |
32#include <asm/hydra.h> 33 34 35#define HYDRA_CPD_PD0 0x00000001 /* CachePD lines */ 36#define HYDRA_CPD_PD1 0x00000002 37#define HYDRA_CPD_PD2 0x00000004 38#define HYDRA_CPD_PD3 0x00000008 39 --- 139 unchanged lines hidden --- | 32#include <asm/hydra.h> 33 34 35#define HYDRA_CPD_PD0 0x00000001 /* CachePD lines */ 36#define HYDRA_CPD_PD1 0x00000002 37#define HYDRA_CPD_PD2 0x00000004 38#define HYDRA_CPD_PD3 0x00000008 39 --- 139 unchanged lines hidden --- |