Hi Kiwoong, kernel test robot noticed the following build warnings: [auto build test WARNING on jejb-scsi/for-next] [also build test WARNING on mkp-scsi/for-next krzk/for-next linus/master v6.11-rc5 next-20240826] [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/Kiwoong-Kim/scsi-ufs-ufs-exynos-implement-override_cqe_ocs/20240826-111954 base: https://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git for-next patch link: https://lore.kernel.org/r/6aaeaa5fd70f76a1ac751ae3c5a3f0e37bc697b1.1724325280.git.kwmad.kim%40samsung.com patch subject: [PATCH v2 1/2] scsi: ufs: core: introduce override_cqe_ocs config: i386-buildonly-randconfig-002-20240826 (https://download.01.org/0day-ci/archive/20240826/202408262058.4pPayDSg-lkp@xxxxxxxxx/config) compiler: gcc-12 (Debian 12.2.0-14) 12.2.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240826/202408262058.4pPayDSg-lkp@xxxxxxxxx/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@xxxxxxxxx> | Closes: https://lore.kernel.org/oe-kbuild-all/202408262058.4pPayDSg-lkp@xxxxxxxxx/ All warnings (new ones prefixed by >>): >> drivers/ufs/core/ufshcd.c:827: warning: Function parameter or struct member 'hba' not described in 'ufshcd_get_tr_ocs' vim +827 drivers/ufs/core/ufshcd.c 7a3e97b0dc4bba drivers/scsi/ufs/ufshcd.c Santosh Yaraganavi 2012-02-29 814 7a3e97b0dc4bba drivers/scsi/ufs/ufshcd.c Santosh Yaraganavi 2012-02-29 815 /** 7a3e97b0dc4bba drivers/scsi/ufs/ufshcd.c Santosh Yaraganavi 2012-02-29 816 * ufshcd_get_tr_ocs - Get the UTRD Overall Command Status 8aa29f192ca675 drivers/scsi/ufs/ufshcd.c Bart Van Assche 2018-03-01 817 * @lrbp: pointer to local command reference block c30d8d010b5efd drivers/ufs/core/ufshcd.c Asutosh Das 2023-01-13 818 * @cqe: pointer to the completion queue entry 7a3e97b0dc4bba drivers/scsi/ufs/ufshcd.c Santosh Yaraganavi 2012-02-29 819 * 7a3e97b0dc4bba drivers/scsi/ufs/ufshcd.c Santosh Yaraganavi 2012-02-29 820 * This function is used to get the OCS field from UTRD 3a17fefe0f1960 drivers/ufs/core/ufshcd.c Bart Van Assche 2023-07-27 821 * 3a17fefe0f1960 drivers/ufs/core/ufshcd.c Bart Van Assche 2023-07-27 822 * Return: the OCS field in the UTRD. 7a3e97b0dc4bba drivers/scsi/ufs/ufshcd.c Santosh Yaraganavi 2012-02-29 823 */ f214402c84a246 drivers/ufs/core/ufshcd.c Kiwoong Kim 2024-08-22 824 static enum utp_ocs ufshcd_get_tr_ocs(struct ufs_hba *hba, f214402c84a246 drivers/ufs/core/ufshcd.c Kiwoong Kim 2024-08-22 825 struct ufshcd_lrb *lrbp, c30d8d010b5efd drivers/ufs/core/ufshcd.c Asutosh Das 2023-01-13 826 struct cq_entry *cqe) 7a3e97b0dc4bba drivers/scsi/ufs/ufshcd.c Santosh Yaraganavi 2012-02-29 @827 { c30d8d010b5efd drivers/ufs/core/ufshcd.c Asutosh Das 2023-01-13 828 if (cqe) f214402c84a246 drivers/ufs/core/ufshcd.c Kiwoong Kim 2024-08-22 829 return ufshcd_vops_override_cqe_ocs(hba, f214402c84a246 drivers/ufs/core/ufshcd.c Kiwoong Kim 2024-08-22 830 le32_to_cpu(cqe->status) & f214402c84a246 drivers/ufs/core/ufshcd.c Kiwoong Kim 2024-08-22 831 MASK_OCS); c30d8d010b5efd drivers/ufs/core/ufshcd.c Asutosh Das 2023-01-13 832 67a2a8973832cb drivers/ufs/core/ufshcd.c Bart Van Assche 2023-07-27 833 return lrbp->utr_descriptor_ptr->header.ocs & MASK_OCS; 7a3e97b0dc4bba drivers/scsi/ufs/ufshcd.c Santosh Yaraganavi 2012-02-29 834 } 7a3e97b0dc4bba drivers/scsi/ufs/ufshcd.c Santosh Yaraganavi 2012-02-29 835 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki