|
@@ -230,10 +230,6 @@ extern void coresight_disable(struct coresight_device *csdev);
|
|
|
extern int coresight_is_bit_set(u32 val, int position, int value);
|
|
|
extern int coresight_timeout(void __iomem *addr, u32 offset,
|
|
|
int position, int value);
|
|
|
-#ifdef CONFIG_OF
|
|
|
-extern struct coresight_platform_data *of_get_coresight_platform_data(
|
|
|
- struct device *dev, struct device_node *node);
|
|
|
-#endif
|
|
|
#else
|
|
|
static inline struct coresight_device *
|
|
|
coresight_register(struct coresight_desc *desc) { return NULL; }
|
|
@@ -245,10 +241,14 @@ static inline int coresight_is_bit_set(u32 val, int position, int value)
|
|
|
{ return 0; }
|
|
|
static inline int coresight_timeout(void __iomem *addr, u32 offset,
|
|
|
int position, int value) { return 1; }
|
|
|
+#endif
|
|
|
+
|
|
|
#ifdef CONFIG_OF
|
|
|
+extern struct coresight_platform_data *of_get_coresight_platform_data(
|
|
|
+ struct device *dev, struct device_node *node);
|
|
|
+#else
|
|
|
static inline struct coresight_platform_data *of_get_coresight_platform_data(
|
|
|
struct device *dev, struct device_node *node) { return NULL; }
|
|
|
#endif
|
|
|
-#endif
|
|
|
|
|
|
#endif
|