i2c-ali15x3.c (b65b34895437915f411882dd40d704eb0863ffb0) i2c-ali15x3.c (2178218027e4da0608219fae1d02e5c88f4e560d)
1/*
2 Copyright (c) 1999 Frodo Looijaard <frodol@dds.nl> and
3 Philip Edelbrock <phil@netroedge.com> and
4 Mark D. Studebaker <mdsxyz123@yahoo.com>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or

--- 53 unchanged lines hidden (view full) ---

62#include <linux/pci.h>
63#include <linux/kernel.h>
64#include <linux/stddef.h>
65#include <linux/ioport.h>
66#include <linux/delay.h>
67#include <linux/i2c.h>
68#include <linux/init.h>
69#include <linux/acpi.h>
1/*
2 Copyright (c) 1999 Frodo Looijaard <frodol@dds.nl> and
3 Philip Edelbrock <phil@netroedge.com> and
4 Mark D. Studebaker <mdsxyz123@yahoo.com>
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or

--- 53 unchanged lines hidden (view full) ---

62#include <linux/pci.h>
63#include <linux/kernel.h>
64#include <linux/stddef.h>
65#include <linux/ioport.h>
66#include <linux/delay.h>
67#include <linux/i2c.h>
68#include <linux/init.h>
69#include <linux/acpi.h>
70#include <asm/io.h>
70#include <linux/io.h>
71
72/* ALI15X3 SMBus address offsets */
73#define SMBHSTSTS (0 + ali15x3_smba)
74#define SMBHSTCNT (1 + ali15x3_smba)
75#define SMBHSTSTART (2 + ali15x3_smba)
76#define SMBHSTCMD (7 + ali15x3_smba)
77#define SMBHSTADD (3 + ali15x3_smba)
78#define SMBHSTDAT0 (4 + ali15x3_smba)

--- 455 unchanged lines hidden ---
71
72/* ALI15X3 SMBus address offsets */
73#define SMBHSTSTS (0 + ali15x3_smba)
74#define SMBHSTCNT (1 + ali15x3_smba)
75#define SMBHSTSTART (2 + ali15x3_smba)
76#define SMBHSTCMD (7 + ali15x3_smba)
77#define SMBHSTADD (3 + ali15x3_smba)
78#define SMBHSTDAT0 (4 + ali15x3_smba)

--- 455 unchanged lines hidden ---