Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0+
0002 
0003 #ifndef PL111_NOMADIK_H
0004 #define PL111_NOMADIK_H
0005 #endif
0006 
0007 struct device;
0008 
0009 #ifdef CONFIG_ARCH_NOMADIK
0010 
0011 void pl111_nomadik_init(struct device *dev);
0012 
0013 #else
0014 
0015 static inline void pl111_nomadik_init(struct device *dev)
0016 {
0017 }
0018 
0019 #endif