From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id F3F8410F1 for ; Fri, 1 Jul 2022 08:50:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1656665436; x=1688201436; h=date:from:to:cc:subject:message-id:mime-version; bh=OV5Yn5ppH27zc0dzk6AOKlbT4smjcFxlDqdU5nFht38=; b=ZdA2fkLLw91JuBbwiejxYRND9fQkfqC1pok95GsBncEgYYrEzlBwRg1n XHFiGcFrMsUi9+Oh8lYVMV7DzrKIgzYIA6HDQD4kqP4kYUx5+GPFch1lK Mv5YYVkQlkgiceQtJYDmZ5qeDksyAMi0xg/XgaSOYTMb7fePpq2mbrX7t NqCvB1rTKyUUiEjYK/ToUVlyC5e8mRUnon1kEgB3RHQELf83RU/hEus4J rUlKKOusaES7N6K/FAWHNQ01TqatUkO3NcSEpUJUg+MNbxtG27fVxB4Z4 xVx6tLl8o67r2/p/D8Ce8dAcorKsiO2IzRmLez9AUc2zia3Ph0VnScWoy g==; X-IronPort-AV: E=McAfee;i="6400,9594,10394"; a="283697312" X-IronPort-AV: E=Sophos;i="5.92,236,1650956400"; d="scan'208";a="283697312" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Jul 2022 01:50:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,236,1650956400"; d="scan'208";a="659357672" Received: from lkp-server01.sh.intel.com (HELO 68b931ab7ac1) ([10.239.97.150]) by fmsmga004.fm.intel.com with ESMTP; 01 Jul 2022 01:50:34 -0700 Received: from kbuild by 68b931ab7ac1 with local (Exim 4.95) (envelope-from ) id 1o7CME-000DlA-40; Fri, 01 Jul 2022 08:50:34 +0000 Date: Fri, 1 Jul 2022 16:49:50 +0800 From: kernel test robot To: Shuah Khan Cc: llvm@lists.linux.dev, kbuild-all@lists.01.org, linux-kernel@vger.kernel.org, Greg Kroah-Hartman Subject: [char-misc:char-misc-linus 3/3] drivers/misc/cardreader/rtsx_usb.c:639:6: warning: variable 'ret' is used uninitialized whenever 'if' condition is true Message-ID: <202207011658.rHJFVLWA-lkp@intel.com> Precedence: bulk X-Mailing-List: llvm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline tree: https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git char-misc-linus head: 3776c78559853fd151be7c41e369fd076fb679d5 commit: 3776c78559853fd151be7c41e369fd076fb679d5 [3/3] misc: rtsx_usb: use separate command and response buffers config: arm-buildonly-randconfig-r006-20220629 (https://download.01.org/0day-ci/archive/20220701/202207011658.rHJFVLWA-lkp@intel.com/config) compiler: clang version 15.0.0 (https://github.com/llvm/llvm-project a9119143a2d1f4d0d0bc1fe0d819e5351b4e0deb) 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 arm cross compiling tool for clang build # apt-get install binutils-arm-linux-gnueabi # https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git/commit/?id=3776c78559853fd151be7c41e369fd076fb679d5 git remote add char-misc https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git git fetch --no-tags char-misc char-misc-linus git checkout 3776c78559853fd151be7c41e369fd076fb679d5 # save the config file mkdir build_dir && cp config build_dir/.config COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross W=1 O=build_dir ARCH=arm SHELL=/bin/bash drivers/misc/cardreader/ If you fix the issue, kindly add following tag where applicable Reported-by: kernel test robot All warnings (new ones prefixed by >>): >> drivers/misc/cardreader/rtsx_usb.c:639:6: warning: variable 'ret' is used uninitialized whenever 'if' condition is true [-Wsometimes-uninitialized] if (!ucr->rsp_buf) ^~~~~~~~~~~~~ drivers/misc/cardreader/rtsx_usb.c:678:9: note: uninitialized use occurs here return ret; ^~~ drivers/misc/cardreader/rtsx_usb.c:639:2: note: remove the 'if' if its condition is always false if (!ucr->rsp_buf) ^~~~~~~~~~~~~~~~~~ drivers/misc/cardreader/rtsx_usb.c:622:9: note: initialize the variable 'ret' to silence this warning int ret; ^ = 0 1 warning generated. vim +639 drivers/misc/cardreader/rtsx_usb.c 616 617 static int rtsx_usb_probe(struct usb_interface *intf, 618 const struct usb_device_id *id) 619 { 620 struct usb_device *usb_dev = interface_to_usbdev(intf); 621 struct rtsx_ucr *ucr; 622 int ret; 623 624 dev_dbg(&intf->dev, 625 ": Realtek USB Card Reader found at bus %03d address %03d\n", 626 usb_dev->bus->busnum, usb_dev->devnum); 627 628 ucr = devm_kzalloc(&intf->dev, sizeof(*ucr), GFP_KERNEL); 629 if (!ucr) 630 return -ENOMEM; 631 632 ucr->pusb_dev = usb_dev; 633 634 ucr->cmd_buf = kmalloc(IOBUF_SIZE, GFP_KERNEL); 635 if (!ucr->cmd_buf) 636 return -ENOMEM; 637 638 ucr->rsp_buf = kmalloc(IOBUF_SIZE, GFP_KERNEL); > 639 if (!ucr->rsp_buf) 640 goto out_free_cmd_buf; 641 642 usb_set_intfdata(intf, ucr); 643 644 ucr->vendor_id = id->idVendor; 645 ucr->product_id = id->idProduct; 646 647 mutex_init(&ucr->dev_mutex); 648 649 ucr->pusb_intf = intf; 650 651 /* initialize */ 652 ret = rtsx_usb_init_chip(ucr); 653 if (ret) 654 goto out_init_fail; 655 656 /* initialize USB SG transfer timer */ 657 timer_setup(&ucr->sg_timer, rtsx_usb_sg_timed_out, 0); 658 659 ret = mfd_add_hotplug_devices(&intf->dev, rtsx_usb_cells, 660 ARRAY_SIZE(rtsx_usb_cells)); 661 if (ret) 662 goto out_init_fail; 663 -- 0-DAY CI Kernel Test Service https://01.org/lkp