2011-05-27 16:30:12 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) ST-Ericsson SA 2011
|
|
|
|
*
|
|
|
|
* License Terms: GNU General Public License v2
|
|
|
|
* Author: Mattias Wallin <mattias.wallin@stericsson.com>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef __CLKSRC_DBX500_PRCMU_H
|
|
|
|
#define __CLKSRC_DBX500_PRCMU_H
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/io.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_CLKSRC_DBX500_PRCMU
|
2011-10-03 15:30:20 +08:00
|
|
|
void __init clksrc_dbx500_prcmu_init(void __iomem *base);
|
2011-05-27 16:30:12 +08:00
|
|
|
#else
|
2011-10-03 15:30:20 +08:00
|
|
|
static inline void __init clksrc_dbx500_prcmu_init(void __iomem *base) {}
|
2011-05-27 16:30:12 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|