On Mon, Apr 4, 2011 at 7:06 PM, Joe Perches <[email protected]> wrote:
> Add pr_fmt.
> Removed local TPACPI_<level> #defines, convert to pr_<level>.
> Neaten dbg_<foo> macros.
> Added a few missing newlines to logging messages.
> Added static inline str_supported for !CONFIG_THINKPAD_ACPI_DEBUG vdbg_printk
> defect reported by Sedat Dilek <[email protected]>.
>
> Signed-off-by: Joe Perches <[email protected]>
> ---
>  drivers/platform/x86/thinkpad_acpi.c |  472 
> ++++++++++++++--------------------
>  1 files changed, 188 insertions(+), 284 deletions(-)
>
> diff --git a/drivers/platform/x86/thinkpad_acpi.c 
> b/drivers/platform/x86/thinkpad_acpi.c
[...]
>  #ifdef CONFIG_THINKPAD_ACPI_DEBUG
>  #define vdbg_printk dbg_printk
>  static const char *str_supported(int is_supported);
>  #else
> -#define vdbg_printk(a_dbg_level, format, arg...) \
> -       do { } while (0)
> +static inline const char *str_supported(int is_supported) { return ""; }
> +#define vdbg_printk(a_dbg_level, format, arg...)       \
> +       no_printk(format, ##arg)
>  #endif

Should be...
+       do { } while (0)
...not...
+       no_printk(format, ##arg)

- Sedat -
--
To unsubscribe from this list: send the line "unsubscribe platform-driver-x86" 
in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to