Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757137AbbBFWsf (ORCPT ); Fri, 6 Feb 2015 17:48:35 -0500 Received: from mail-ie0-f173.google.com ([209.85.223.173]:39707 "EHLO mail-ie0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752364AbbBFWsd (ORCPT ); Fri, 6 Feb 2015 17:48:33 -0500 MIME-Version: 1.0 In-Reply-To: <20150206223149.GB345@google.com> References: <1421704310-26857-3-git-send-email-rjui@broadcom.com> <20150206223149.GB345@google.com> Date: Fri, 6 Feb 2015 14:48:31 -0800 Message-ID: Subject: Re: [v7,2/3] i2c: iproc: Add Broadcom iProc I2C Driver From: Dmitry Torokhov To: Kevin Cernekee Cc: Ray Jui , Wolfram Sang , =?UTF-8?Q?Uwe_Kleine=2DK=C3=B6nig?= , Arend van Spriel , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Grant Likely , Christian Daudt , Matt Porter , Florian Fainelli , Russell King , Scott Branden , linux-i2c@vger.kernel.org, "linux-kernel@vger.kernel.org" , linux-arm-kernel@lists.infradead.org, bcm-kernel-feedback-list@broadcom.com, devicetree@vger.kernel.org, Dmitry Torokhov Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1116 Lines: 30 On Fri, Feb 6, 2015 at 2:31 PM, Kevin Cernekee wrote: > On Mon, Jan 19, 2015 at 01:51:49PM -0800, Ray Jui wrote: >> + >> + dev_dbg(iproc_i2c->device, "xfer %c, addr=0x%02x, len=%d\n", >> + (msg->flags & I2C_M_RD) ? 'R' : 'W', msg->addr, >> + msg->len); >> + dev_dbg(iproc_i2c->device, "**** data start ****\n"); >> + for (i = 0; i < msg->len; i++) >> + dev_dbg(iproc_i2c->device, "0x%02x ", msg->buf[i]); >> + dev_dbg(iproc_i2c->device, "**** data end ****\n"); > > It might be simpler to just do: > > print_hex_dump_bytes("iproc_i2c:", DUMP_PREFIX_NONE, msg->buf, msg->len); > > although you'd lose the ability to see the I2C device name. We can also do: dev_dbg(iproc_i2c->device, "*** data: %*ph\n", msg->len, msg->buf); if we are OK with limiting output to 64 bytes. Thanks, Dmitry -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/