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 A479ECE7A88 for ; Sun, 24 Sep 2023 02:40:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229688AbjIXCki (ORCPT ); Sat, 23 Sep 2023 22:40:38 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33266 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229437AbjIXCkh (ORCPT ); Sat, 23 Sep 2023 22:40:37 -0400 Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.20]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 48C3E10C for ; Sat, 23 Sep 2023 19:40:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1695523230; x=1727059230; h=date:from:to:cc:subject:message-id:mime-version; bh=+V+CDma2m6HxLGkhi72x0B/ugf2btrVh5qLHw7evXUI=; b=bvnkKRMtjdIsDvqTh/kFvpfbX5hPaoz9bUen/+whuzLuNJNqThxu/iET ZRY2bXeV7hlxDZcwtCbUri9CbB+Ce6cQP70vsJebQFqCqe1cjwT3xoP3G QQ8v9b6KAzvc2z4W4bvMAMY0EnsEyLTWCYvoYgXI21i1l7woIzE2inygL bbvV0cAEo0ataODOdCLYiwpuSyWpG0MsLrOuSAM9o9VAym0PBt7FvfGhT 0eEV+Wn/1USmya3TJOYYeSmCY/g/y2TupBG0YwcZkyVbs7BcmlSyDNaPc q8+2Hr63vrJVtlXDXqOVY6fmV5hQCZiiRkrKR/MY0ljTKOq7kxWmQ/n6W Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10842"; a="371389999" X-IronPort-AV: E=Sophos;i="6.03,171,1694761200"; d="scan'208";a="371389999" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Sep 2023 19:40:29 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10842"; a="871685729" X-IronPort-AV: E=Sophos;i="6.03,171,1694761200"; d="scan'208";a="871685729" Received: from lkp-server02.sh.intel.com (HELO 493f6c7fed5d) ([10.239.97.151]) by orsmga004.jf.intel.com with ESMTP; 23 Sep 2023 19:40:28 -0700 Received: from kbuild by 493f6c7fed5d with local (Exim 4.96) (envelope-from ) id 1qkF2o-00039l-1H; Sun, 24 Sep 2023 02:40:26 +0000 Date: Sun, 24 Sep 2023 10:40:08 +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: <202309241030.EdF09Szb-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: 3aba70aed91f2b283f7952be152ad76ec5c34975 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/20230924/202309241030.EdF09Szb-lkp@intel.com/config) compiler: csky-linux-gcc (GCC) 13.2.0 reproduce: (https://download.01.org/0day-ci/archive/20230924/202309241030.EdF09Szb-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/202309241030.EdF09Szb-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