From: Daniel Kurtz <djkurtz@chromium.org>
To: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>, linux-input@vger.kernel.org
Subject: Re: [PATCH] atmel_mxt: simplify mxt_dump_message
Date: Wed, 26 Sep 2012 22:18:20 +0800 [thread overview]
Message-ID: <CAGS+omCi2o0GJzxjEYfuyvBpDLXnomxPgW==u6Hg5etpCSm34A@mail.gmail.com> (raw)
In-Reply-To: <1348657555-8226-1-git-send-email-andriy.shevchenko@linux.intel.com>
On Wed, Sep 26, 2012 at 7:05 PM, Andy Shevchenko
<andriy.shevchenko@linux.intel.com> wrote:
>
> This patch applies %*ph to print small buffer and marks function as inline.
>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Daniel Kurtz <djkurtz@chromium.org>
>
> ---
> drivers/input/touchscreen/atmel_mxt_ts.c | 10 ++++------
> 1 file changed, 4 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/input/touchscreen/atmel_mxt_ts.c b/drivers/input/touchscreen/atmel_mxt_ts.c
> index e92615d..211bfb4 100644
> --- a/drivers/input/touchscreen/atmel_mxt_ts.c
> +++ b/drivers/input/touchscreen/atmel_mxt_ts.c
> @@ -317,13 +317,11 @@ static bool mxt_object_writable(unsigned int type)
> }
> }
>
> -static void mxt_dump_message(struct device *dev,
> - struct mxt_message *message)
> +static inline void mxt_dump_message(struct device *dev,
> + struct mxt_message *message)
> {
> - dev_dbg(dev, "reportid: %u\tmessage: %02x %02x %02x %02x %02x %02x %02x\n",
> - message->reportid, message->message[0], message->message[1],
> - message->message[2], message->message[3], message->message[4],
> - message->message[5], message->message[6]);
> + dev_dbg(dev, "reportid: %u\tmessage: %*ph\n",
> + message->reportid, 7, message->message);
> }
>
> static int mxt_check_bootloader(struct i2c_client *client,
> --
> 1.7.10.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-input" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
prev parent reply other threads:[~2012-09-26 14:18 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-26 11:05 [PATCH] atmel_mxt: simplify mxt_dump_message Andy Shevchenko
2012-09-26 14:18 ` Daniel Kurtz [this message]
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='CAGS+omCi2o0GJzxjEYfuyvBpDLXnomxPgW==u6Hg5etpCSm34A@mail.gmail.com' \
--to=djkurtz@chromium.org \
--cc=andriy.shevchenko@linux.intel.com \
--cc=dmitry.torokhov@gmail.com \
--cc=linux-input@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;
as well as URLs for NNTP newsgroup(s).