summaryrefslogtreecommitdiff
path: root/compat/compat-3.6.c
diff options
context:
space:
mode:
Diffstat (limited to 'compat/compat-3.6.c')
-rw-r--r--compat/compat-3.6.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/compat/compat-3.6.c b/compat/compat-3.6.c
new file mode 100644
index 0000000..9e593f5
--- /dev/null
+++ b/compat/compat-3.6.c
@@ -0,0 +1,29 @@
+/*
+ * Copyright (c) 2013 Luis R. Rodriguez <mcgrof@do-not-panic.com>
+ *
+ * Backport compatibility file for Linux for kernels 3.6.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include <linux/module.h>
+#include <linux/export.h>
+#include <linux/clk.h>
+
+/* whoopsie ! */
+#ifndef CONFIG_COMMON_CLK
+#ifndef CONFIG_ARCH_TEGRA
+int clk_enable(struct clk *clk)
+{
+ return 0;
+}
+EXPORT_SYMBOL_GPL(clk_enable);
+
+void clk_disable(struct clk *clk)
+{
+}
+EXPORT_SYMBOL_GPL(clk_disable);
+#endif
+#endif