From: Joe Perches <joe@perches.com>
To: Matthew Garrett <mjg@redhat.com>,
platform-driver-x86@vger.kernel.org,
acpi4asus-user@lists.sourceforge.net,
ibm-acpi-devel@lists.sourceforge.net
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH 00/23] drivers/platform/x86: Remove warnings and use pr_<level>
Date: Tue, 29 Mar 2011 15:21:31 -0700 [thread overview]
Message-ID: <cover.1301436234.git.joe@perches.com> (raw)
Removed a couple of compilation warnings.
Use pr_<level> consistently.
Joe Perches (23):
asus-wmi: Remove __init from asus_wmi_platform_init
ibm_rtl: Remove warnings from casts of pointer to int
acer-wmi: pr_<level> cleanups
asus: Add pr_fmt and convert printks to pr_<level>
compal-laptop: Convert printks to pr_<level>
dell: Convert printks to pr_<level>
eeepc: Use pr_warn
fujitsu-laptop: Convert printks to pr_<level>
hdaps: Convert printks to pr_<level>
hp-wmi: Convert printks to pr_<level>
ibm_rtl: Use pr_fmt and pr_<level>
ideapad-laptop: Add pr_fmt
intel_menlow: Add pr_fmt and use pr_<level>
intel_pmic_gpio: Convert printks to pr_<level>
msi-laptop: pr_<level> neatening
msi-wmi: Use pr_fmt and pr_<level>
sony-laptop: Add and use #define pr_fmt
tc1100-wmi: Add pr_fmt, use pr_<level>
thinkpad_acpi: Convert printks to pr_<level>
topstar-laptop: Convert remaining printk to pr_info
toshiba: Convert printks to pr_<level>
wmi: Removed trailing whitespace from logging message.
xo15-ebook: Use pr_<level>
drivers/platform/x86/acer-wmi.c | 32 +-
drivers/platform/x86/asus-laptop.c | 34 +-
drivers/platform/x86/asus-wmi.c | 22 +-
drivers/platform/x86/asus_acpi.c | 77 ++---
drivers/platform/x86/compal-laptop.c | 22 +-
drivers/platform/x86/dell-laptop.c | 12 +-
drivers/platform/x86/dell-wmi-aio.c | 3 +-
drivers/platform/x86/dell-wmi.c | 17 +-
drivers/platform/x86/eeepc-laptop.c | 20 +-
drivers/platform/x86/eeepc-wmi.c | 14 +-
drivers/platform/x86/fujitsu-laptop.c | 39 ++--
drivers/platform/x86/hdaps.c | 19 +-
drivers/platform/x86/hp-wmi.c | 43 +--
drivers/platform/x86/ibm_rtl.c | 23 +-
drivers/platform/x86/ideapad-laptop.c | 2 +
drivers/platform/x86/intel_menlow.c | 5 +-
drivers/platform/x86/intel_pmic_gpio.c | 14 +-
drivers/platform/x86/msi-laptop.c | 9 +-
drivers/platform/x86/msi-wmi.c | 45 ++--
drivers/platform/x86/sony-laptop.c | 104 +++----
drivers/platform/x86/tc1100-wmi.c | 7 +-
drivers/platform/x86/thinkpad_acpi.c | 471 ++++++++++++------------------
drivers/platform/x86/topstar-laptop.c | 2 +-
drivers/platform/x86/toshiba_acpi.c | 59 ++--
drivers/platform/x86/toshiba_bluetooth.c | 11 +-
drivers/platform/x86/wmi.c | 10 +-
drivers/platform/x86/xo15-ebook.c | 5 +-
27 files changed, 495 insertions(+), 626 deletions(-)
--
1.7.4.2.g597a6.dirty
next reply other threads:[~2011-03-29 22:22 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-29 22:21 Joe Perches [this message]
2011-03-29 22:21 ` [PATCH 01/23] asus-wmi: Remove __init from asus_wmi_platform_init Joe Perches
2011-03-31 7:17 ` Corentin Chary
2011-03-29 22:21 ` [PATCH 02/23] ibm_rtl: Remove warnings from casts of pointer to int Joe Perches
2011-03-29 22:21 ` [PATCH 03/23] acer-wmi: pr_<level> cleanups Joe Perches
2011-03-31 6:41 ` Joey Lee
2011-03-29 22:21 ` [PATCH 04/23] asus: Add pr_fmt and convert printks to pr_<level> Joe Perches
2011-03-31 7:18 ` Corentin Chary
2011-03-29 22:21 ` [PATCH 05/23] compal-laptop: Convert " Joe Perches
2011-03-29 22:21 ` [PATCH 06/23] dell: " Joe Perches
2011-03-29 22:21 ` [PATCH 07/23] eeepc: Use pr_warn Joe Perches
2011-03-31 7:19 ` Corentin Chary
2011-03-29 22:21 ` [PATCH 08/23] fujitsu-laptop: Convert printks to pr_<level> Joe Perches
2011-03-29 22:42 ` Jonathan Woithe
2011-03-29 22:50 ` Joe Perches
2011-03-29 22:21 ` [PATCH 09/23] hdaps: " Joe Perches
2011-03-30 1:54 ` Lucas De Marchi
2011-03-30 2:00 ` Joe Perches
2011-03-29 22:21 ` [PATCH 10/23] hp-wmi: " Joe Perches
2011-03-29 22:21 ` [PATCH 11/23] ibm_rtl: Use pr_fmt and pr_<level> Joe Perches
2011-03-29 22:21 ` [PATCH 12/23] ideapad-laptop: Add pr_fmt Joe Perches
2011-03-29 22:21 ` [PATCH 13/23] intel_menlow: Add pr_fmt and use pr_<level> Joe Perches
2011-03-29 22:21 ` [PATCH 14/23] intel_pmic_gpio: Convert printks to pr_<level> Joe Perches
2011-03-29 22:21 ` [PATCH 15/23] msi-laptop: pr_<level> neatening Joe Perches
2011-03-31 6:41 ` Joey Lee
2011-03-29 22:21 ` [PATCH 16/23] msi-wmi: Use pr_fmt and pr_<level> Joe Perches
2011-03-30 14:16 ` Anisse Astier
2011-03-29 22:21 ` [PATCH 17/23] sony-laptop: Add and use #define pr_fmt Joe Perches
2011-03-29 22:21 ` [PATCH 18/23] tc1100-wmi: Add pr_fmt, use pr_<level> Joe Perches
2011-03-29 22:21 ` [PATCH 19/23] thinkpad_acpi: Convert printks to pr_<level> Joe Perches
2011-03-29 22:21 ` [PATCH 20/23] topstar-laptop: Convert remaining printk to pr_info Joe Perches
2011-03-29 23:44 ` Herton Ronaldo Krzesinski
2011-03-29 22:21 ` [PATCH 21/23] toshiba: Convert printks to pr_<level> Joe Perches
2011-03-29 22:21 ` [PATCH 22/23] wmi: Removed trailing whitespace from logging message Joe Perches
2011-03-29 22:21 ` [PATCH 23/23] xo15-ebook: Use pr_<level> Joe Perches
2011-03-30 14:30 ` [PATCH 00/23] drivers/platform/x86: Remove warnings and use pr_<level> Corentin Chary
2011-03-30 15:02 ` Joe Perches
2011-04-01 18:21 ` Matthew Garrett
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cover.1301436234.git.joe@perches.com \
--to=joe@perches.com \
--cc=acpi4asus-user@lists.sourceforge.net \
--cc=ibm-acpi-devel@lists.sourceforge.net \
--cc=linux-kernel@vger.kernel.org \
--cc=mjg@redhat.com \
--cc=platform-driver-x86@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox