lkml.org 
[lkml]   [2015]   [Mar]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 15/22] drm: %pF is only for function pointers
    Date
    Use %pS for actual addresses, otherwise you'll get bad output
    on arches like ppc64 where %pF expects a function descriptor.

    Signed-off-by: Scott Wood <scottwood@freescale.com>
    Cc: dri-devel@lists.freedesktop.org
    ---
    drivers/gpu/drm/drm_drv.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/drivers/gpu/drm/drm_drv.c b/drivers/gpu/drm/drm_drv.c
    index d512134..48f7359 100644
    --- a/drivers/gpu/drm/drm_drv.c
    +++ b/drivers/gpu/drm/drm_drv.c
    @@ -70,7 +70,7 @@ void drm_err(const char *format, ...)
    vaf.fmt = format;
    vaf.va = &args;

    - printk(KERN_ERR "[" DRM_NAME ":%pf] *ERROR* %pV",
    + printk(KERN_ERR "[" DRM_NAME ":%ps] *ERROR* %pV",
    __builtin_return_address(0), &vaf);

    va_end(args);
    --
    2.1.0


    \
     
     \ /
      Last update: 2015-03-12 04:41    [W:2.352 / U:0.332 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site