From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 81780CE7A88 for ; Sat, 23 Sep 2023 14:06:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231240AbjIWOFS (ORCPT ); Sat, 23 Sep 2023 10:05:18 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34334 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229616AbjIWOFR (ORCPT ); Sat, 23 Sep 2023 10:05:17 -0400 Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.126]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7461A19E for ; Sat, 23 Sep 2023 07:05:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1695477911; x=1727013911; h=date:from:to:cc:subject:message-id:mime-version; bh=8OTmG9ZWIXQK0USIXRh00OJCENJCRHifURIhh2wi8gQ=; b=gakogLQynYcgIJbvRs2gdA7aVi28HO4AUWT7MVV/3qjco8/G8GEYlpXW C7Ro4VqYh9hF1/J/y1wAScIoaSyzJrI8+Dt1hVdy52kycOh1khyOg883Z YO/FdehdEDNB1w87Y/z3tUjlakYbq0yJQdRBcQb7uYt6WFNakucnFTZfk DKnJxegD1kXsg0//xOBx/XuJkzOqhWTPo3/gCzpaLxHzu6lnL3Z+zVEry G31GbfJl609HQTYvCBHUturqQTIGr1jMeE4rUj1QITM5rAuNhfv8uog0e HhpIdUjtNOUO6fy89Oc0UXdoNzKM45dqbgiJKYAfMWCzpR97v9tA+koAp Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10842"; a="366078714" X-IronPort-AV: E=Sophos;i="6.03,171,1694761200"; d="scan'208";a="366078714" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Sep 2023 07:04:51 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10842"; a="863302477" X-IronPort-AV: E=Sophos;i="6.03,171,1694761200"; d="scan'208";a="863302477" Received: from lkp-server02.sh.intel.com (HELO 493f6c7fed5d) ([10.239.97.151]) by fmsmga002.fm.intel.com with ESMTP; 23 Sep 2023 07:04:49 -0700 Received: from kbuild by 493f6c7fed5d with local (Exim 4.96) (envelope-from ) id 1qk3FX-0002SD-1e; Sat, 23 Sep 2023 14:04:47 +0000 Date: Sat, 23 Sep 2023 22:04:31 +0800 From: kernel test robot To: Sandor Yu Cc: oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org, Neil Armstrong Subject: drivers/gpu/drm/bridge/synopsys/dw-hdmi-cec.c:332 dw_hdmi_cec_suspend() warn: inconsistent indenting Message-ID: <202309232133.OnycNeQQ-lkp@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master head: d90b0276af8f25a0b8ae081a30d1b2a61263393b commit: db1184e410744a680f92ca21e5acd5ae54510db8 drm: bridge: dw_hdmi: Add cec suspend/resume functions date: 7 weeks ago config: csky-randconfig-r071-20230917 (https://download.01.org/0day-ci/archive/20230923/202309232133.OnycNeQQ-lkp@intel.com/config) compiler: csky-linux-gcc (GCC) 13.2.0 reproduce: (https://download.01.org/0day-ci/archive/20230923/202309232133.OnycNeQQ-lkp@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot | Closes: https://lore.kernel.org/oe-kbuild-all/202309232133.OnycNeQQ-lkp@intel.com/ smatch warnings: drivers/gpu/drm/bridge/synopsys/dw-hdmi-cec.c:332 dw_hdmi_cec_suspend() warn: inconsistent indenting vim +332 drivers/gpu/drm/bridge/synopsys/dw-hdmi-cec.c 326 327 static int __maybe_unused dw_hdmi_cec_suspend(struct device *dev) 328 { 329 struct dw_hdmi_cec *cec = dev_get_drvdata(dev); 330 331 /* store interrupt status/mask registers */ > 332 cec->regs_polarity = dw_hdmi_read(cec, HDMI_CEC_POLARITY); 333 cec->regs_mask = dw_hdmi_read(cec, HDMI_CEC_MASK); 334 cec->regs_mute_stat0 = dw_hdmi_read(cec, HDMI_IH_MUTE_CEC_STAT0); 335 336 return 0; 337 } 338 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki