|
@@ -339,6 +339,8 @@ struct device *driver_find_device(struct device_driver *drv,
|
|
struct device *start, void *data,
|
|
struct device *start, void *data,
|
|
int (*match)(struct device *dev, void *data));
|
|
int (*match)(struct device *dev, void *data));
|
|
|
|
|
|
|
|
+int driver_deferred_probe_check_state(struct device *dev);
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* struct subsys_interface - interfaces to device functions
|
|
* struct subsys_interface - interfaces to device functions
|
|
* @name: name of the device function
|
|
* @name: name of the device function
|
|
@@ -1329,30 +1331,34 @@ struct device_link *device_link_add(struct device *consumer,
|
|
void device_link_del(struct device_link *link);
|
|
void device_link_del(struct device_link *link);
|
|
void device_link_remove(void *consumer, struct device *supplier);
|
|
void device_link_remove(void *consumer, struct device *supplier);
|
|
|
|
|
|
|
|
+#ifndef dev_fmt
|
|
|
|
+#define dev_fmt(fmt) fmt
|
|
|
|
+#endif
|
|
|
|
+
|
|
#ifdef CONFIG_PRINTK
|
|
#ifdef CONFIG_PRINTK
|
|
|
|
|
|
-extern __printf(3, 0)
|
|
|
|
|
|
+__printf(3, 0)
|
|
int dev_vprintk_emit(int level, const struct device *dev,
|
|
int dev_vprintk_emit(int level, const struct device *dev,
|
|
const char *fmt, va_list args);
|
|
const char *fmt, va_list args);
|
|
-extern __printf(3, 4)
|
|
|
|
|
|
+__printf(3, 4)
|
|
int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...);
|
|
int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...);
|
|
|
|
|
|
-extern __printf(3, 4)
|
|
|
|
|
|
+__printf(3, 4)
|
|
void dev_printk(const char *level, const struct device *dev,
|
|
void dev_printk(const char *level, const struct device *dev,
|
|
const char *fmt, ...);
|
|
const char *fmt, ...);
|
|
-extern __printf(2, 3)
|
|
|
|
-void dev_emerg(const struct device *dev, const char *fmt, ...);
|
|
|
|
-extern __printf(2, 3)
|
|
|
|
-void dev_alert(const struct device *dev, const char *fmt, ...);
|
|
|
|
-extern __printf(2, 3)
|
|
|
|
-void dev_crit(const struct device *dev, const char *fmt, ...);
|
|
|
|
-extern __printf(2, 3)
|
|
|
|
-void dev_err(const struct device *dev, const char *fmt, ...);
|
|
|
|
-extern __printf(2, 3)
|
|
|
|
-void dev_warn(const struct device *dev, const char *fmt, ...);
|
|
|
|
-extern __printf(2, 3)
|
|
|
|
-void dev_notice(const struct device *dev, const char *fmt, ...);
|
|
|
|
-extern __printf(2, 3)
|
|
|
|
|
|
+__printf(2, 3)
|
|
|
|
+void _dev_emerg(const struct device *dev, const char *fmt, ...);
|
|
|
|
+__printf(2, 3)
|
|
|
|
+void _dev_alert(const struct device *dev, const char *fmt, ...);
|
|
|
|
+__printf(2, 3)
|
|
|
|
+void _dev_crit(const struct device *dev, const char *fmt, ...);
|
|
|
|
+__printf(2, 3)
|
|
|
|
+void _dev_err(const struct device *dev, const char *fmt, ...);
|
|
|
|
+__printf(2, 3)
|
|
|
|
+void _dev_warn(const struct device *dev, const char *fmt, ...);
|
|
|
|
+__printf(2, 3)
|
|
|
|
+void _dev_notice(const struct device *dev, const char *fmt, ...);
|
|
|
|
+__printf(2, 3)
|
|
void _dev_info(const struct device *dev, const char *fmt, ...);
|
|
void _dev_info(const struct device *dev, const char *fmt, ...);
|
|
|
|
|
|
#else
|
|
#else
|
|
@@ -1370,26 +1376,26 @@ static inline void __dev_printk(const char *level, const struct device *dev,
|
|
{}
|
|
{}
|
|
static inline __printf(3, 4)
|
|
static inline __printf(3, 4)
|
|
void dev_printk(const char *level, const struct device *dev,
|
|
void dev_printk(const char *level, const struct device *dev,
|
|
- const char *fmt, ...)
|
|
|
|
|
|
+ const char *fmt, ...)
|
|
{}
|
|
{}
|
|
|
|
|
|
static inline __printf(2, 3)
|
|
static inline __printf(2, 3)
|
|
-void dev_emerg(const struct device *dev, const char *fmt, ...)
|
|
|
|
|
|
+void _dev_emerg(const struct device *dev, const char *fmt, ...)
|
|
{}
|
|
{}
|
|
static inline __printf(2, 3)
|
|
static inline __printf(2, 3)
|
|
-void dev_crit(const struct device *dev, const char *fmt, ...)
|
|
|
|
|
|
+void _dev_crit(const struct device *dev, const char *fmt, ...)
|
|
{}
|
|
{}
|
|
static inline __printf(2, 3)
|
|
static inline __printf(2, 3)
|
|
-void dev_alert(const struct device *dev, const char *fmt, ...)
|
|
|
|
|
|
+void _dev_alert(const struct device *dev, const char *fmt, ...)
|
|
{}
|
|
{}
|
|
static inline __printf(2, 3)
|
|
static inline __printf(2, 3)
|
|
-void dev_err(const struct device *dev, const char *fmt, ...)
|
|
|
|
|
|
+void _dev_err(const struct device *dev, const char *fmt, ...)
|
|
{}
|
|
{}
|
|
static inline __printf(2, 3)
|
|
static inline __printf(2, 3)
|
|
-void dev_warn(const struct device *dev, const char *fmt, ...)
|
|
|
|
|
|
+void _dev_warn(const struct device *dev, const char *fmt, ...)
|
|
{}
|
|
{}
|
|
static inline __printf(2, 3)
|
|
static inline __printf(2, 3)
|
|
-void dev_notice(const struct device *dev, const char *fmt, ...)
|
|
|
|
|
|
+void _dev_notice(const struct device *dev, const char *fmt, ...)
|
|
{}
|
|
{}
|
|
static inline __printf(2, 3)
|
|
static inline __printf(2, 3)
|
|
void _dev_info(const struct device *dev, const char *fmt, ...)
|
|
void _dev_info(const struct device *dev, const char *fmt, ...)
|
|
@@ -1398,27 +1404,36 @@ void _dev_info(const struct device *dev, const char *fmt, ...)
|
|
#endif
|
|
#endif
|
|
|
|
|
|
/*
|
|
/*
|
|
- * Stupid hackaround for existing uses of non-printk uses dev_info
|
|
|
|
- *
|
|
|
|
- * Note that the definition of dev_info below is actually _dev_info
|
|
|
|
- * and a macro is used to avoid redefining dev_info
|
|
|
|
|
|
+ * #defines for all the dev_<level> macros to prefix with whatever
|
|
|
|
+ * possible use of #define dev_fmt(fmt) ...
|
|
*/
|
|
*/
|
|
|
|
|
|
-#define dev_info(dev, fmt, arg...) _dev_info(dev, fmt, ##arg)
|
|
|
|
|
|
+#define dev_emerg(dev, fmt, ...) \
|
|
|
|
+ _dev_emerg(dev, dev_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
+#define dev_crit(dev, fmt, ...) \
|
|
|
|
+ _dev_crit(dev, dev_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
+#define dev_alert(dev, fmt, ...) \
|
|
|
|
+ _dev_alert(dev, dev_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
+#define dev_err(dev, fmt, ...) \
|
|
|
|
+ _dev_err(dev, dev_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
+#define dev_warn(dev, fmt, ...) \
|
|
|
|
+ _dev_warn(dev, dev_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
+#define dev_notice(dev, fmt, ...) \
|
|
|
|
+ _dev_notice(dev, dev_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
+#define dev_info(dev, fmt, ...) \
|
|
|
|
+ _dev_info(dev, dev_fmt(fmt), ##__VA_ARGS__)
|
|
|
|
|
|
#if defined(CONFIG_DYNAMIC_DEBUG)
|
|
#if defined(CONFIG_DYNAMIC_DEBUG)
|
|
-#define dev_dbg(dev, format, ...) \
|
|
|
|
-do { \
|
|
|
|
- dynamic_dev_dbg(dev, format, ##__VA_ARGS__); \
|
|
|
|
-} while (0)
|
|
|
|
|
|
+#define dev_dbg(dev, fmt, ...) \
|
|
|
|
+ dynamic_dev_dbg(dev, dev_fmt(fmt), ##__VA_ARGS__)
|
|
#elif defined(DEBUG)
|
|
#elif defined(DEBUG)
|
|
-#define dev_dbg(dev, format, arg...) \
|
|
|
|
- dev_printk(KERN_DEBUG, dev, format, ##arg)
|
|
|
|
|
|
+#define dev_dbg(dev, fmt, ...) \
|
|
|
|
+ dev_printk(KERN_DEBUG, dev, dev_fmt(fmt), ##__VA_ARGS__)
|
|
#else
|
|
#else
|
|
-#define dev_dbg(dev, format, arg...) \
|
|
|
|
-({ \
|
|
|
|
- if (0) \
|
|
|
|
- dev_printk(KERN_DEBUG, dev, format, ##arg); \
|
|
|
|
|
|
+#define dev_dbg(dev, fmt, ...) \
|
|
|
|
+({ \
|
|
|
|
+ if (0) \
|
|
|
|
+ dev_printk(KERN_DEBUG, dev, dev_fmt(fmt), ##__VA_ARGS__); \
|
|
})
|
|
})
|
|
#endif
|
|
#endif
|
|
|
|
|
|
@@ -1490,7 +1505,7 @@ do { \
|
|
DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, fmt); \
|
|
DEFINE_DYNAMIC_DEBUG_METADATA(descriptor, fmt); \
|
|
if (unlikely(descriptor.flags & _DPRINTK_FLAGS_PRINT) && \
|
|
if (unlikely(descriptor.flags & _DPRINTK_FLAGS_PRINT) && \
|
|
__ratelimit(&_rs)) \
|
|
__ratelimit(&_rs)) \
|
|
- __dynamic_dev_dbg(&descriptor, dev, fmt, \
|
|
|
|
|
|
+ __dynamic_dev_dbg(&descriptor, dev, dev_fmt(fmt), \
|
|
##__VA_ARGS__); \
|
|
##__VA_ARGS__); \
|
|
} while (0)
|
|
} while (0)
|
|
#elif defined(DEBUG)
|
|
#elif defined(DEBUG)
|
|
@@ -1500,23 +1515,23 @@ do { \
|
|
DEFAULT_RATELIMIT_INTERVAL, \
|
|
DEFAULT_RATELIMIT_INTERVAL, \
|
|
DEFAULT_RATELIMIT_BURST); \
|
|
DEFAULT_RATELIMIT_BURST); \
|
|
if (__ratelimit(&_rs)) \
|
|
if (__ratelimit(&_rs)) \
|
|
- dev_printk(KERN_DEBUG, dev, fmt, ##__VA_ARGS__); \
|
|
|
|
|
|
+ dev_printk(KERN_DEBUG, dev, dev_fmt(fmt), ##__VA_ARGS__); \
|
|
} while (0)
|
|
} while (0)
|
|
#else
|
|
#else
|
|
#define dev_dbg_ratelimited(dev, fmt, ...) \
|
|
#define dev_dbg_ratelimited(dev, fmt, ...) \
|
|
do { \
|
|
do { \
|
|
if (0) \
|
|
if (0) \
|
|
- dev_printk(KERN_DEBUG, dev, fmt, ##__VA_ARGS__); \
|
|
|
|
|
|
+ dev_printk(KERN_DEBUG, dev, dev_fmt(fmt), ##__VA_ARGS__); \
|
|
} while (0)
|
|
} while (0)
|
|
#endif
|
|
#endif
|
|
|
|
|
|
#ifdef VERBOSE_DEBUG
|
|
#ifdef VERBOSE_DEBUG
|
|
#define dev_vdbg dev_dbg
|
|
#define dev_vdbg dev_dbg
|
|
#else
|
|
#else
|
|
-#define dev_vdbg(dev, format, arg...) \
|
|
|
|
-({ \
|
|
|
|
- if (0) \
|
|
|
|
- dev_printk(KERN_DEBUG, dev, format, ##arg); \
|
|
|
|
|
|
+#define dev_vdbg(dev, fmt, ...) \
|
|
|
|
+({ \
|
|
|
|
+ if (0) \
|
|
|
|
+ dev_printk(KERN_DEBUG, dev, dev_fmt(fmt), ##__VA_ARGS__); \
|
|
})
|
|
})
|
|
#endif
|
|
#endif
|
|
|
|
|