From: kbuild test robot <lkp@intel.com>
To: kbuild-all@lists.01.org
Subject: Re: [PATCH RFC v3 4/6] drm/sprd: add Unisoc's drm display controller driver
Date: Mon, 24 Feb 2020 05:38:59 +0800 [thread overview]
Message-ID: <202002240534.fvg6V0bX%lkp@intel.com> (raw)
In-Reply-To: <1582271336-3708-5-git-send-email-kevin3.tang@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2537 bytes --]
Hi Kevin,
[FYI, it's a private test report for your RFC patch.]
[auto build test ERROR on robh/for-next]
[also build test ERROR on linus/master v5.6-rc2]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]
url: https://github.com/0day-ci/linux/commits/Kevin-Tang/Add-Unisoc-s-drm-kms-module/20200222-125500
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: arm64-allyesconfig (attached as .config)
compiler: aarch64-linux-gcc (GCC) 7.5.0
reproduce:
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# save the attached .config to linux build tree
GCC_VERSION=7.5.0 make.cross ARCH=arm64
If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
drivers/gpu/drm/sprd/sprd_dpu.c: In function 'sprd_dpu_context_init':
>> drivers/gpu/drm/sprd/sprd_dpu.c:603:29: error: implicit declaration of function 'ioremap_nocache'; did you mean 'ioremap_cache'? [-Werror=implicit-function-declaration]
ctx->base = (unsigned long)ioremap_nocache(r.start,
^~~~~~~~~~~~~~~
ioremap_cache
cc1: some warnings being treated as errors
--
>> drivers/gpu/drm/sprd/dpu/dpu_r2p0.c:9:10: fatal error: sprd_dpu.h: No such file or directory
#include "sprd_dpu.h"
^~~~~~~~~~~~
compilation terminated.
vim +603 drivers/gpu/drm/sprd/sprd_dpu.c
592
593 static int sprd_dpu_context_init(struct sprd_dpu *dpu,
594 struct device_node *np)
595 {
596 struct resource r;
597 struct dpu_context *ctx = &dpu->ctx;
598
599 if (of_address_to_resource(np, 0, &r)) {
600 DRM_ERROR("parse dt base address failed\n");
601 return -ENODEV;
602 }
> 603 ctx->base = (unsigned long)ioremap_nocache(r.start,
604 resource_size(&r));
605 if (ctx->base == 0) {
606 DRM_ERROR("ioremap base address failed\n");
607 return -EFAULT;
608 }
609
610 sema_init(&ctx->refresh_lock, 1);
611
612 return 0;
613 }
614
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all(a)lists.01.org
[-- Attachment #2: config.gz --]
[-- Type: application/gzip, Size: 70482 bytes --]
next prev parent reply other threads:[~2020-02-23 21:38 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-21 7:48 [PATCH RFC v3 0/6] Add Unisoc's drm kms module Kevin Tang
2020-02-21 7:48 ` Kevin Tang
2020-02-21 7:48 ` [PATCH RFC v3 1/6] dt-bindings: display: add Unisoc's drm master bindings Kevin Tang
2020-02-21 7:48 ` Kevin Tang
2020-02-21 21:21 ` Sam Ravnborg
2020-02-21 21:21 ` Sam Ravnborg
2020-02-22 9:10 ` Orson Zhai
2020-02-22 9:10 ` Orson Zhai
2020-02-22 10:49 ` Sam Ravnborg
2020-02-22 10:49 ` Sam Ravnborg
2020-02-22 12:40 ` tang pengchuan
2020-02-21 7:48 ` [PATCH RFC v3 2/6] drm/sprd: add Unisoc's drm kms master Kevin Tang
2020-02-21 7:48 ` Kevin Tang
2020-02-21 21:36 ` Sam Ravnborg
2020-02-21 21:36 ` Sam Ravnborg
2020-02-22 17:06 ` tang pengchuan
2020-02-22 21:27 ` Sam Ravnborg
2020-02-22 21:27 ` Sam Ravnborg
2020-02-23 4:26 ` tang pengchuan
2020-02-23 4:58 ` tang pengchuan
2020-02-25 7:38 ` Thomas Zimmermann
2020-02-25 7:38 ` Thomas Zimmermann
2020-02-25 9:45 ` tang pengchuan
2020-02-24 16:43 ` Emil Velikov
2020-02-24 16:43 ` Emil Velikov
2020-02-25 3:08 ` tang pengchuan
2020-02-21 7:48 ` [PATCH RFC v3 3/6] dt-bindings: display: add Unisoc's dpu bindings Kevin Tang
2020-02-21 7:48 ` Kevin Tang
2020-02-21 21:39 ` Sam Ravnborg
2020-02-21 21:39 ` Sam Ravnborg
2020-02-23 13:46 ` tang pengchuan
2020-02-21 7:48 ` [PATCH RFC v3 4/6] drm/sprd: add Unisoc's drm display controller driver Kevin Tang
2020-02-21 7:48 ` Kevin Tang
2020-02-23 21:38 ` kbuild test robot [this message]
2020-02-24 17:35 ` Emil Velikov
2020-02-24 17:35 ` Emil Velikov
2020-02-25 9:08 ` tang pengchuan
2020-02-21 7:48 ` [PATCH RFC v3 5/6] dt-bindings: display: add Unisoc's mipi dsi&dphy bindings Kevin Tang
2020-02-21 7:48 ` Kevin Tang
2020-02-21 7:48 ` [PATCH RFC v3 6/6] drm/sprd: add Unisoc's drm mipi dsi&dphy driver Kevin Tang
2020-02-21 7:48 ` Kevin Tang
2020-02-24 0:38 ` kbuild test robot
2020-02-21 21:17 ` [PATCH RFC v3 0/6] Add Unisoc's drm kms module Sam Ravnborg
2020-02-21 21:17 ` Sam Ravnborg
2020-02-23 4:01 ` tang pengchuan
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=202002240534.fvg6V0bX%lkp@intel.com \
--to=lkp@intel.com \
--cc=kbuild-all@lists.01.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.