From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Alex Deucher <alexdeucher@gmail.com>
Cc: Alex Deucher <alexander.deucher@amd.com>,
Maling list - DRI developers <dri-devel@lists.freedesktop.org>
Subject: Re: [PATCH] drm/radeon: reduce memory footprint for debugging
Date: Tue, 09 Sep 2014 11:14:26 +0300 [thread overview]
Message-ID: <1410250466.25129.2.camel@linux.intel.com> (raw)
In-Reply-To: <CADnq5_P6sFhpA+ULOecoSs8_WC99yZ__ExrDfynrYLQ64De_DA@mail.gmail.com>
On Mon, 2014-09-08 at 18:28 -0400, Alex Deucher wrote:
> On Thu, Sep 4, 2014 at 8:44 AM, Andy Shevchenko
> <andriy.shevchenko@linux.intel.com> wrote:
> > There is no need to use hex_dump_to_buffer() since we have a kernel helper to
> > dump up to 64 bytes just via printk(). In our case the actual size is 15 bytes.
> >
> > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
>
> Patch generates the following warning:
> CC [M] drivers/gpu/drm/radeon/atombios_dp.o
> drivers/gpu/drm/radeon/atombios_dp.c: In function ‘radeon_dp_getdpcd’:
> drivers/gpu/drm/radeon/atombios_dp.c:413:3: warning: field width
> specifier ‘*’ expects argument of type ‘int’, but argument 3 has type
> ‘u8 *’ [-Wformat=]
> DRM_DEBUG_KMS("DPCD: %*ph\n", dig_connector->dpcd,
> ^
> drivers/gpu/drm/radeon/atombios_dp.c:413:3: warning: format ‘%p’
> expects argument of type ‘void *’, but argument 4 has type ‘int’
> [-Wformat=]
> LD [M] drivers/gpu/drm/radeon/radeon.o
> Building modules, stage 2.
> MODPOST 2485 modules
> LD [M] drivers/gpu/drm/radeon/radeon.ko
There is a patch v2.
http://www.spinics.net/lists/dri-devel/msg67407.html
>
>
>
> > ---
> > drivers/gpu/drm/radeon/atombios_dp.c | 7 ++-----
> > 1 file changed, 2 insertions(+), 5 deletions(-)
> >
> > diff --git a/drivers/gpu/drm/radeon/atombios_dp.c b/drivers/gpu/drm/radeon/atombios_dp.c
> > index 95ea276..4e75c48 100644
> > --- a/drivers/gpu/drm/radeon/atombios_dp.c
> > +++ b/drivers/gpu/drm/radeon/atombios_dp.c
> > @@ -405,16 +405,13 @@ bool radeon_dp_getdpcd(struct radeon_connector *radeon_connector)
> > u8 msg[DP_DPCD_SIZE];
> > int ret;
> >
> > - char dpcd_hex_dump[DP_DPCD_SIZE * 3];
> > -
> > ret = drm_dp_dpcd_read(&radeon_connector->ddc_bus->aux, DP_DPCD_REV, msg,
> > DP_DPCD_SIZE);
> > if (ret > 0) {
> > memcpy(dig_connector->dpcd, msg, DP_DPCD_SIZE);
> >
> > - hex_dump_to_buffer(dig_connector->dpcd, sizeof(dig_connector->dpcd),
> > - 32, 1, dpcd_hex_dump, sizeof(dpcd_hex_dump), false);
> > - DRM_DEBUG_KMS("DPCD: %s\n", dpcd_hex_dump);
> > + DRM_DEBUG_KMS("DPCD: %*ph\n", dig_connector->dpcd,
> > + (int)sizeof(dig_connector->dpcd));
> >
> > radeon_dp_probe_oui(radeon_connector);
> >
> > --
> > 2.1.0
> >
> > _______________________________________________
> > dri-devel mailing list
> > dri-devel@lists.freedesktop.org
> > http://lists.freedesktop.org/mailman/listinfo/dri-devel
--
Andy Shevchenko <andriy.shevchenko@intel.com>
Intel Finland Oy
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2014-09-09 8:14 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-04 12:44 [PATCH] drm/radeon: reduce memory footprint for debugging Andy Shevchenko
2014-09-08 22:28 ` Alex Deucher
2014-09-09 8:14 ` Andy Shevchenko [this message]
2014-09-09 14:57 ` Alex Deucher
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=1410250466.25129.2.camel@linux.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=alexander.deucher@amd.com \
--cc=alexdeucher@gmail.com \
--cc=dri-devel@lists.freedesktop.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.