summaryrefslogtreecommitdiff
path: root/libdde-linux26/libdde_linux26/contrib/include/linux/i2c-pnx.h
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2013-07-27 22:15:01 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2013-07-27 22:15:01 +0000
commit7996a3d79d55b7f879dfd62e202bbfe2963718d3 (patch)
tree8d9f6759fec4099b9be503c11c7ed174f7204980 /libdde-linux26/libdde_linux26/contrib/include/linux/i2c-pnx.h
parent4fbe7358c7747a9165f776eb19addbb9baf7def2 (diff)
really properly move files
Diffstat (limited to 'libdde-linux26/libdde_linux26/contrib/include/linux/i2c-pnx.h')
-rw-r--r--libdde-linux26/libdde_linux26/contrib/include/linux/i2c-pnx.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/libdde-linux26/libdde_linux26/contrib/include/linux/i2c-pnx.h b/libdde-linux26/libdde_linux26/contrib/include/linux/i2c-pnx.h
deleted file mode 100644
index f13255e0..00000000
--- a/libdde-linux26/libdde_linux26/contrib/include/linux/i2c-pnx.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Header file for I2C support on PNX010x/4008.
- *
- * Author: Dennis Kovalev <dkovalev@ru.mvista.com>
- *
- * 2004-2006 (c) MontaVista Software, Inc. This file is licensed under
- * the terms of the GNU General Public License version 2. This program
- * is licensed "as is" without any warranty of any kind, whether express
- * or implied.
- */
-
-#ifndef __I2C_PNX_H__
-#define __I2C_PNX_H__
-
-#include <linux/pm.h>
-
-struct platform_device;
-
-struct i2c_pnx_mif {
- int ret; /* Return value */
- int mode; /* Interface mode */
- struct completion complete; /* I/O completion */
- struct timer_list timer; /* Timeout */
- char * buf; /* Data buffer */
- int len; /* Length of data buffer */
-};
-
-struct i2c_pnx_algo_data {
- u32 base;
- u32 ioaddr;
- int irq;
- struct i2c_pnx_mif mif;
- int last;
-};
-
-struct i2c_pnx_data {
- int (*suspend) (struct platform_device *pdev, pm_message_t state);
- int (*resume) (struct platform_device *pdev);
- u32 (*calculate_input_freq) (struct platform_device *pdev);
- int (*set_clock_run) (struct platform_device *pdev);
- int (*set_clock_stop) (struct platform_device *pdev);
- struct i2c_adapter *adapter;
-};
-
-#endif /* __I2C_PNX_H__ */