1/* 2 * Power Management driver for Marvell Kirkwood SoCs 3 * 4 * Copyright (C) 2013 Ezequiel Garcia <ezequiel@free-electrons.com> 5 * Copyright (C) 2010 Simon Guinot <sguinot@lacie.com> 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License, 9 * version 2 of the License. 10 * 11 * This program is distributed in the hope that it will be useful, 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 * GNU General Public License for more details. 15 */ 16 17#ifndef __ARCH_KIRKWOOD_PM_H 18#define __ARCH_KIRKWOOD_PM_H 19 20#ifdef CONFIG_PM 21void kirkwood_pm_init(void); 22#else 23static inline void kirkwood_pm_init(void) {}; 24#endif 25 26#endif 27