brintos

brintos / linux-shallow public Read only

0
0
Text · 520 B · b918d07 Raw
21 lines · c
1/*2 * Copyright (C) 2012 Marvell3 *4 * Thomas Petazzoni <thomas.petazzoni@free-electrons.com>5 *6 * This file is licensed under the terms of the GNU General Public7 * License version 2.  This program is licensed "as is" without any8 * warranty of any kind, whether express or implied.9 */10 11#ifndef __MVEBU_PMSU_H__12#define __MVEBU_PMSU_H__13 14#ifdef CONFIG_MACH_MVEBU_V715int mvebu_pmsu_dfs_request(int cpu);16#else17static inline int mvebu_pmsu_dfs_request(int cpu) { return -ENODEV; }18#endif19 20#endif /* __MVEBU_PMSU_H__ */21