From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751143AbdESHtl (ORCPT ); Fri, 19 May 2017 03:49:41 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:40404 "EHLO mail2-relais-roc.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750731AbdESHti (ORCPT ); Fri, 19 May 2017 03:49:38 -0400 X-IronPort-AV: E=Sophos;i="5.38,363,1491256800"; d="scan'208";a="273798233" Date: Fri, 19 May 2017 15:49:09 +0800 (SGT) From: Julia Lawall X-X-Sender: jll@hadrien To: Masahiro Yamada cc: linux-kernel@vger.kernel.org, Masahiro Yamada , Yannick Fertre , Philippe Cornu , David Airlie , dri-devel@lists.freedesktop.org, Daniel Vetter , linux-kernel@vger.kernel.org, Masahiro Yamada , Yannick Fertre , Philippe Cornu , David Airlie , kbuild@01.org Subject: Re: [PATCH] drm/stm: add COMPILE_TEST to Kconfig (fwd) Message-ID: User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On line 466, the preceeding comment suggests that the second constant should start with VS rather than HS again. julia ---------- Forwarded message ---------- Date: Fri, 19 May 2017 15:45:39 +0800 From: kbuild test robot To: kbuild@01.org Cc: Julia Lawall Subject: Re: [PATCH] drm/stm: add COMPILE_TEST to Kconfig CC: kbuild-all@01.org In-Reply-To: <1495082711-10535-1-git-send-email-yamada.masahiro@socionext.com> TO: Masahiro Yamada CC: dri-devel@lists.freedesktop.org, Daniel Vetter , linux-kernel@vger.kernel.org, Masahiro Yamada , Yannick Fertre , Philippe Cornu , David Airlie CC: linux-kernel@vger.kernel.org, Masahiro Yamada , Yannick Fertre , Philippe Cornu , David Airlie Hi Masahiro, [auto build test WARNING on drm/drm-next] [cannot apply to v4.12-rc1 next-20170518] [if your patch is applied to the wrong git tree, please drop us a note to help improve the system] url: https://github.com/0day-ci/linux/commits/Masahiro-Yamada/drm-stm-add-COMPILE_TEST-to-Kconfig/20170519-131342 base: git://people.freedesktop.org/~airlied/linux.git drm-next :::::: branch date: 3 hours ago :::::: commit date: 3 hours ago >> drivers/gpu/drm/stm/ltdc.c:466:7-15: duplicated argument to & or | git remote add linux-review https://github.com/0day-ci/linux git remote update linux-review git checkout c669a25d907f95d3e13f1dae9812642330b4aa28 vim +466 drivers/gpu/drm/stm/ltdc.c b759012c Yannick Fertre 2017-04-14 450 accum_vbp = vsync + vm.vback_porch; b759012c Yannick Fertre 2017-04-14 451 accum_act_w = accum_hbp + vm.hactive; b759012c Yannick Fertre 2017-04-14 452 accum_act_h = accum_vbp + vm.vactive; b759012c Yannick Fertre 2017-04-14 453 total_width = accum_act_w + vm.hfront_porch; b759012c Yannick Fertre 2017-04-14 454 total_height = accum_act_h + vm.vfront_porch; b759012c Yannick Fertre 2017-04-14 455 b759012c Yannick Fertre 2017-04-14 456 clk_disable(ldev->pixel_clk); b759012c Yannick Fertre 2017-04-14 457 b759012c Yannick Fertre 2017-04-14 458 if (clk_set_rate(ldev->pixel_clk, rate) < 0) { b759012c Yannick Fertre 2017-04-14 459 DRM_ERROR("Cannot set rate (%dHz) for pixel clk\n", rate); b759012c Yannick Fertre 2017-04-14 460 return; b759012c Yannick Fertre 2017-04-14 461 } b759012c Yannick Fertre 2017-04-14 462 b759012c Yannick Fertre 2017-04-14 463 clk_enable(ldev->pixel_clk); b759012c Yannick Fertre 2017-04-14 464 b759012c Yannick Fertre 2017-04-14 465 /* Configures the HS, VS, DE and PC polarities. */ b759012c Yannick Fertre 2017-04-14 @466 val = HSPOL_AL | HSPOL_AL | DEPOL_AL | PCPOL_IPC; b759012c Yannick Fertre 2017-04-14 467 b759012c Yannick Fertre 2017-04-14 468 if (vm.flags & DISPLAY_FLAGS_HSYNC_HIGH) b759012c Yannick Fertre 2017-04-14 469 val |= HSPOL_AH; b759012c Yannick Fertre 2017-04-14 470 b759012c Yannick Fertre 2017-04-14 471 if (vm.flags & DISPLAY_FLAGS_VSYNC_HIGH) b759012c Yannick Fertre 2017-04-14 472 val |= VSPOL_AH; b759012c Yannick Fertre 2017-04-14 473 b759012c Yannick Fertre 2017-04-14 474 if (vm.flags & DISPLAY_FLAGS_DE_HIGH) :::::: The code at line 466 was first introduced by commit :::::: b759012c5fa761ee08998c80fc4ad6343c258487 drm/stm: Add STM32 LTDC driver :::::: TO: Yannick Fertre :::::: CC: Eric Anholt --- 0-DAY kernel test infrastructure Open Source Technology Center https://lists.01.org/pipermail/kbuild-all Intel Corporation