From: kernel test robot <lkp@intel.com>
To: Changhuang Liang <changhuang.liang@starfivetech.com>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
Maxime Ripard <mripard@kernel.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Hans Verkuil <hverkuil@xs4all.nl>
Cc: oe-kbuild-all@lists.linux.dev, linux-media@vger.kernel.org,
Jacopo Mondi <jacopo.mondi@ideasonboard.com>,
Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
Tomi Valkeinen <tomi.valkeinen+renesas@ideasonboard.com>,
Jack Zhu <jack.zhu@starfivetech.com>,
Keith Zhao <keith.zhao@starfivetech.com>,
Changhuang Liang <changhuang.liang@starfivetech.com>,
Jayshri Pawar <jpawar@cadence.com>, Jai Luthra <j-luthra@ti.com>,
linux-kernel@vger.kernel.org, linux-staging@lists.linux.dev
Subject: Re: [PATCH v2 1/5] media: cadence: csi2rx: Support runtime PM
Date: Thu, 18 Jul 2024 22:53:01 +0800 [thread overview]
Message-ID: <202407182235.kxDoVX8T-lkp@intel.com> (raw)
In-Reply-To: <20240718032834.53876-2-changhuang.liang@starfivetech.com>
Hi Changhuang,
kernel test robot noticed the following build warnings:
[auto build test WARNING on media-tree/master]
[also build test WARNING on linuxtv-media-stage/master staging/staging-testing staging/staging-next staging/staging-linus linus/master v6.10 next-20240718]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Changhuang-Liang/media-cadence-csi2rx-Support-runtime-PM/20240718-131216
base: git://linuxtv.org/media_tree.git master
patch link: https://lore.kernel.org/r/20240718032834.53876-2-changhuang.liang%40starfivetech.com
patch subject: [PATCH v2 1/5] media: cadence: csi2rx: Support runtime PM
config: s390-allyesconfig (https://download.01.org/0day-ci/archive/20240718/202407182235.kxDoVX8T-lkp@intel.com/config)
compiler: s390-linux-gcc (GCC) 14.1.0
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240718/202407182235.kxDoVX8T-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 <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202407182235.kxDoVX8T-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> drivers/media/platform/cadence/cdns-csi2rx.c:739:12: warning: 'csi2rx_runtime_resume' defined but not used [-Wunused-function]
739 | static int csi2rx_runtime_resume(struct device *dev)
| ^~~~~~~~~~~~~~~~~~~~~
>> drivers/media/platform/cadence/cdns-csi2rx.c:720:12: warning: 'csi2rx_runtime_suspend' defined but not used [-Wunused-function]
720 | static int csi2rx_runtime_suspend(struct device *dev)
| ^~~~~~~~~~~~~~~~~~~~~~
vim +/csi2rx_runtime_resume +739 drivers/media/platform/cadence/cdns-csi2rx.c
719
> 720 static int csi2rx_runtime_suspend(struct device *dev)
721 {
722 struct csi2rx_priv *csi2rx = dev_get_drvdata(dev);
723 unsigned int i;
724
725 reset_control_assert(csi2rx->sys_rst);
726 clk_disable_unprepare(csi2rx->sys_clk);
727
728 for (i = 0; i < csi2rx->max_streams; i++) {
729 reset_control_assert(csi2rx->pixel_rst[i]);
730 clk_disable_unprepare(csi2rx->pixel_clk[i]);
731 }
732
733 reset_control_assert(csi2rx->p_rst);
734 clk_disable_unprepare(csi2rx->p_clk);
735
736 return 0;
737 }
738
> 739 static int csi2rx_runtime_resume(struct device *dev)
740 {
741 struct csi2rx_priv *csi2rx = dev_get_drvdata(dev);
742 unsigned int i;
743 int ret;
744
745 ret = clk_prepare_enable(csi2rx->p_clk);
746 if (ret)
747 return ret;
748
749 reset_control_deassert(csi2rx->p_rst);
750
751 for (i = 0; i < csi2rx->max_streams; i++) {
752 ret = clk_prepare_enable(csi2rx->pixel_clk[i]);
753 if (ret)
754 goto err_disable_pixclk;
755
756 reset_control_deassert(csi2rx->pixel_rst[i]);
757 }
758
759 ret = clk_prepare_enable(csi2rx->sys_clk);
760 if (ret)
761 goto err_disable_pixclk;
762
763 reset_control_deassert(csi2rx->sys_rst);
764
765 return ret;
766
767 err_disable_pixclk:
768 for (; i > 0; i--) {
769 reset_control_assert(csi2rx->pixel_rst[i - 1]);
770 clk_disable_unprepare(csi2rx->pixel_clk[i - 1]);
771 }
772
773 reset_control_assert(csi2rx->p_rst);
774 clk_disable_unprepare(csi2rx->p_clk);
775
776 return ret;
777 }
778
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
next prev parent reply other threads:[~2024-07-18 14:53 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-18 3:28 [PATCH v2 0/5] Add StarFive Camera Subsystem hibernation support Changhuang Liang
2024-07-18 3:28 ` [PATCH v2 1/5] media: cadence: csi2rx: Support runtime PM Changhuang Liang
2024-07-18 14:24 ` Jacopo Mondi
2024-07-18 14:53 ` kernel test robot [this message]
2024-07-18 3:28 ` [PATCH v2 2/5] media: cadence: csi2rx: Add system PM support Changhuang Liang
2024-07-18 14:31 ` Jacopo Mondi
2024-07-19 10:28 ` Tomi Valkeinen
2024-07-22 2:17 ` 回复: " Changhuang Liang
2024-07-22 8:53 ` Tomi Valkeinen
2024-07-22 11:25 ` Laurent Pinchart
2024-07-18 3:28 ` [PATCH v2 3/5] staging: media: starfive: Extract the ISP stream on as a helper function Changhuang Liang
2024-07-18 3:28 ` [PATCH v2 4/5] staging: media: starfive: Introduce streaming for ISP subdev Changhuang Liang
2024-07-18 3:28 ` [PATCH v2 5/5] staging: media: starfive: Add system PM support Changhuang Liang
2024-07-18 14:55 ` Jacopo Mondi
2024-07-19 2:08 ` 回复: " Changhuang Liang
2024-07-22 8:57 ` Jacopo Mondi
2024-07-22 9:25 ` 回复: " Changhuang Liang
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=202407182235.kxDoVX8T-lkp@intel.com \
--to=lkp@intel.com \
--cc=changhuang.liang@starfivetech.com \
--cc=gregkh@linuxfoundation.org \
--cc=hverkuil@xs4all.nl \
--cc=j-luthra@ti.com \
--cc=jack.zhu@starfivetech.com \
--cc=jacopo.mondi@ideasonboard.com \
--cc=jpawar@cadence.com \
--cc=keith.zhao@starfivetech.com \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-staging@lists.linux.dev \
--cc=mchehab@kernel.org \
--cc=mripard@kernel.org \
--cc=oe-kbuild-all@lists.linux.dev \
--cc=tomi.valkeinen+renesas@ideasonboard.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox