aboutsummaryrefslogtreecommitdiff
path: root/driver/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'driver/main.c')
-rw-r--r--driver/main.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/driver/main.c b/driver/main.c
index 4dd4b88..498bb0f 100644
--- a/driver/main.c
+++ b/driver/main.c
@@ -1,8 +1,14 @@
-#include <linux/init.h>
-#include <linux/i2c.h>
-
#include "main.h"
+int lork_probe(struct i2c_client * client) {
+ printk(KERN_INFO "%s()\n", __PRETTY_FUNCTION__);
+ return 0;
+}
+
+void lork_remove(struct i2c_client * client) {
+ return;
+}
+
module_i2c_driver(lork_driver);
MODULE_LICENSE("Dual MIT/GPL");