aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/s3c24xx/files-2.6.31/include/linux/hdq.h
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/s3c24xx/files-2.6.31/include/linux/hdq.h')
-rw-r--r--target/linux/s3c24xx/files-2.6.31/include/linux/hdq.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/target/linux/s3c24xx/files-2.6.31/include/linux/hdq.h b/target/linux/s3c24xx/files-2.6.31/include/linux/hdq.h
deleted file mode 100644
index 377ab387eb..0000000000
--- a/target/linux/s3c24xx/files-2.6.31/include/linux/hdq.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef __LINUX_HDQ_H__
-#define __LINUX_HDQ_H__
-
-#include <linux/device.h>
-
-#define HDQ_SAMPLE_PERIOD_US 10
-
-/* platform data */
-
-struct hdq_platform_data {
- /*
- * give an opportunity to use us as parent for
- * devices that depend on us
- */
- void (*attach_child_devices)(struct device *parent_device);
-
- void (*gpio_dir_out)(void);
- void (*gpio_dir_in)(void);
- void (*gpio_set)(int);
- int (*gpio_get)(void);
-
- int (*enable_fiq)(void);
- void (*disable_fiq)(void);
- void (*kick_fiq)(void);
-
-};
-
-int hdq_read(int address);
-int hdq_write(int address, u8 data);
-int hdq_initialized(void);
-
-#endif