summaryrefslogtreecommitdiff
path: root/backport/compat/compat-3.6.c
diff options
context:
space:
mode:
Diffstat (limited to 'backport/compat/compat-3.6.c')
-rw-r--r--backport/compat/compat-3.6.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/backport/compat/compat-3.6.c b/backport/compat/compat-3.6.c
deleted file mode 100644
index 9e593f5c..00000000
--- a/backport/compat/compat-3.6.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/*
- * 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