linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Vaibhav Gupta <vaibhavgupta40@gmail.com>
To: kernel test robot <lkp@intel.com>
Cc: Bjorn Helgaas <helgaas@kernel.org>,
	Vaibhav Gupta <vaibhav.varodek@gmail.com>,
	Jens Axboe <axboe@kernel.dk>,
	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
	kbuild-all@lists.01.org, clang-built-linux@googlegroups.com,
	linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-kernel-mentees@lists.linuxfoundation.org,
	Shuah Khan <skhan@linuxfoundation.org>
Subject: Re: [PATCH v1] ata: use generic power management
Date: Mon, 27 Jul 2020 12:49:10 +0530	[thread overview]
Message-ID: <20200727071910.GA6368@gmail.com> (raw)
In-Reply-To: <202007250808.yhgHBmpJ%lkp@intel.com>

On Sat, Jul 25, 2020 at 09:00:12AM +0800, kernel test robot wrote:
> Hi Vaibhav,
> 
> Thank you for the patch! Perhaps something to improve:
> 
> [auto build test WARNING on block/for-next]
> [also build test WARNING on v5.8-rc6 next-20200724]
> [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]
> 
> url:    https://github.com/0day-ci/linux/commits/Vaibhav-Gupta/ata-use-generic-power-management/20200724-190929
> base:   https://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git for-next
> config: x86_64-allyesconfig (attached as .config)
> compiler: clang version 12.0.0 (https://github.com/llvm/llvm-project 1d09ecf36175f7910ffedd6d497c07b5c74c22fb)
> reproduce (this is a W=1 build):
>         wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
>         chmod +x ~/bin/make.cross
>         # install x86_64 cross compiling tool for clang build
>         # apt-get install binutils-x86-64-linux-gnu
>         # save the attached .config to linux build tree
>         COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64 
> 
> If you fix the issue, kindly add following tag as appropriate
> Reported-by: kernel test robot <lkp@intel.com>
> 
> All warnings (new ones prefixed by >>):
> 
> >> drivers/ata/pata_triflex.c:186:36: warning: ISO C90 forbids mixing declarations and code [-Wdeclaration-after-statement]
>            static const struct ata_port_info info = {
>                                              ^
>    1 warning generated.
> 
> vim +186 drivers/ata/pata_triflex.c
> 
> 669a5db411d85a Jeff Garzik     2006-08-29  176  
> 669a5db411d85a Jeff Garzik     2006-08-29  177  static int triflex_init_one(struct pci_dev *dev, const struct pci_device_id *id)
> 669a5db411d85a Jeff Garzik     2006-08-29  178  {
> 5acd74b592933f Vaibhav Gupta   2020-07-24  179  	/*
> 5acd74b592933f Vaibhav Gupta   2020-07-24  180  	 * We must not disable or powerdown the device.
> 5acd74b592933f Vaibhav Gupta   2020-07-24  181  	 * APM bios refuses to suspend if IDE is not accessible.
> 5acd74b592933f Vaibhav Gupta   2020-07-24  182  	 */
> 5acd74b592933f Vaibhav Gupta   2020-07-24  183  	dev->pm_cap = 0;
> 5acd74b592933f Vaibhav Gupta   2020-07-24  184  	dev_info(&dev->dev, "Disable triflex to be turned off by PCI CORE\n");
> 5acd74b592933f Vaibhav Gupta   2020-07-24  185  
> 1626aeb881236c Tejun Heo       2007-05-04 @186  	static const struct ata_port_info info = {
> 1d2808fd3d2d5d Jeff Garzik     2007-05-28  187  		.flags = ATA_FLAG_SLAVE_POSS,
> 14bdef982caeda Erik Inge Bolsø 2009-03-14  188  		.pio_mask = ATA_PIO4,
> 14bdef982caeda Erik Inge Bolsø 2009-03-14  189  		.mwdma_mask = ATA_MWDMA2,
> 669a5db411d85a Jeff Garzik     2006-08-29  190  		.port_ops = &triflex_port_ops
> 669a5db411d85a Jeff Garzik     2006-08-29  191  	};
> 1626aeb881236c Tejun Heo       2007-05-04  192  	const struct ata_port_info *ppi[] = { &info, NULL };
> 669a5db411d85a Jeff Garzik     2006-08-29  193  
> 06296a1e684bcd Joe Perches     2011-04-15  194  	ata_print_version_once(&dev->dev, DRV_VERSION);
> 669a5db411d85a Jeff Garzik     2006-08-29  195  
> 1c5afdf7a629d2 Tejun Heo       2010-05-19  196  	return ata_pci_bmdma_init_one(dev, ppi, &triflex_sht, NULL, 0);
> 669a5db411d85a Jeff Garzik     2006-08-29  197  }
> 669a5db411d85a Jeff Garzik     2006-08-29  198  
> 
> ---
> 0-DAY CI Kernel Test Service, Intel Corporation
> https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org

Fixed in v2. Will float v2 after few more checks.

Thanks
Vaibhav Gupta

      reply	other threads:[~2020-07-27  7:20 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-24 11:06 [PATCH v1] ata: use generic power management Vaibhav Gupta
2020-07-24 11:11 ` Vaibhav Gupta
2020-07-24 23:49 ` kernel test robot
2020-07-25  1:00 ` kernel test robot
2020-07-27  7:19   ` Vaibhav Gupta [this message]

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=20200727071910.GA6368@gmail.com \
    --to=vaibhavgupta40@gmail.com \
    --cc=axboe@kernel.dk \
    --cc=b.zolnierkie@samsung.com \
    --cc=clang-built-linux@googlegroups.com \
    --cc=helgaas@kernel.org \
    --cc=kbuild-all@lists.01.org \
    --cc=linux-ide@vger.kernel.org \
    --cc=linux-kernel-mentees@lists.linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lkp@intel.com \
    --cc=skhan@linuxfoundation.org \
    --cc=vaibhav.varodek@gmail.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;
as well as URLs for NNTP newsgroup(s).