aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/include/asm/clkdev.h
diff options
context:
space:
mode:
authorStephen Boyd <sboyd@codeaurora.org>2016-01-27 14:18:02 -0800
committerStephen Boyd <sboyd@codeaurora.org>2018-01-02 15:41:24 -0800
commit590f306bc8dbea0b7f86af46aeb512ad2ed6e686 (patch)
treee8576f5bd2be2452c914a09423f7cf43736fbfff /arch/blackfin/include/asm/clkdev.h
parentLinux 4.15-rc1 (diff)
downloadlinux-dev-590f306bc8dbea0b7f86af46aeb512ad2ed6e686.tar.xz
linux-dev-590f306bc8dbea0b7f86af46aeb512ad2ed6e686.zip
blackfin: Use generic clkdev.h header
The generic header file is equivalent to the blackfin version, so just use the generic one. Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to '')
-rw-r--r--arch/blackfin/include/asm/clkdev.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/arch/blackfin/include/asm/clkdev.h b/arch/blackfin/include/asm/clkdev.h
deleted file mode 100644
index ded0209348c7..000000000000
--- a/arch/blackfin/include/asm/clkdev.h
+++ /dev/null
@@ -1,17 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0 */
-#ifndef __ASM_CLKDEV__H_
-#define __ASM_CLKDEV__H_
-
-#include <linux/slab.h>
-
-static inline struct clk_lookup_alloc *__clkdev_alloc(size_t size)
-{
- return kzalloc(size, GFP_KERNEL);
-}
-
-#ifndef CONFIG_COMMON_CLK
-#define __clk_put(clk)
-#define __clk_get(clk) ({ 1; })
-#endif
-
-#endif