Path: blob/master/arch/arm/mach-msm/include/mach/clkdev.h
17498 views
/* Copyright (c) 2011, Code Aurora Forum. All rights reserved.1*2* This program is free software; you can redistribute it and/or modify3* it under the terms of the GNU General Public License version 2 and4* only version 2 as published by the Free Software Foundation.5*6* This program is distributed in the hope that it will be useful,7* but WITHOUT ANY WARRANTY; without even the implied warranty of8* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the9* GNU General Public License for more details.10*/11#ifndef __ASM_ARCH_MSM_CLKDEV_H12#define __ASM_ARCH_MSM_CLKDEV_H1314struct clk;1516static inline int __clk_get(struct clk *clk) { return 1; }17static inline void __clk_put(struct clk *clk) { }18#endif192021