aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/i2c-algo-sgi.h
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2009-04-06 12:12:25 -0400
committerJean Delvare <khali@linux-fr.org>2009-04-06 12:12:25 -0400
commitabe213d7f6fb87f48f4324320733f666db1bc11b (patch)
treec4666bf63f34cdfe3f97e5a80cebd5c2eb5b5119 /include/linux/i2c-algo-sgi.h
parent7c8ad4aff0699197469327d0e50d1e48f2ccb39b (diff)
i2c: Delete unused i2c-algo-sgi helper module
The i2c-algo-sgi code was merged into the vino driver, so we can delete it now. Signed-off-by: Jean Delvare <khali@linux-fr.org>
Diffstat (limited to 'include/linux/i2c-algo-sgi.h')
-rw-r--r--include/linux/i2c-algo-sgi.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/include/linux/i2c-algo-sgi.h b/include/linux/i2c-algo-sgi.h
deleted file mode 100644
index 3b7715024e69..000000000000
--- a/include/linux/i2c-algo-sgi.h
+++ /dev/null
@@ -1,26 +0,0 @@
1/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License version 2 as published by the Free Software Foundation.
4 *
5 * Copyright (C) 2003 Ladislav Michl <ladis@linux-mips.org>
6 */
7
8#ifndef I2C_ALGO_SGI_H
9#define I2C_ALGO_SGI_H 1
10
11#include <linux/i2c.h>
12
13struct i2c_algo_sgi_data {
14 void *data; /* private data for lowlevel routines */
15 unsigned (*getctrl)(void *data);
16 void (*setctrl)(void *data, unsigned val);
17 unsigned (*rdata)(void *data);
18 void (*wdata)(void *data, unsigned val);
19
20 int xfer_timeout;
21 int ack_timeout;
22};
23
24int i2c_sgi_add_bus(struct i2c_adapter *);
25
26#endif /* I2C_ALGO_SGI_H */