From: kernel test robot <lkp@intel.com>
To: Vasileios Bimpikas <vasileios.bimpikas@xilinx.com>
Cc: kbuild-all@lists.01.org, linux-arm-kernel@lists.infradead.org,
Michal Simek <monstr@monstr.eu>
Subject: [xilinx-xlnx:xlnx_rebase_v5.15_LTS 461/1129] drivers/staging/xroeframer/sysfs_xroe.c:106: warning: expecting prototype for version_store(). Prototype was for enable_store() instead
Date: Sat, 7 May 2022 13:11:30 +0800 [thread overview]
Message-ID: <202205071337.nPiYuFcK-lkp@intel.com> (raw)
tree: https://github.com/Xilinx/linux-xlnx xlnx_rebase_v5.15_LTS
head: 3076249fc30bf463f8390f89009de928ad3e95ff
commit: 0175545bc3e52db0029f52c324cf70f36d113540 [461/1129] staging: Add xroeframer driver
config: arc-allyesconfig (https://download.01.org/0day-ci/archive/20220507/202205071337.nPiYuFcK-lkp@intel.com/config)
compiler: arceb-elf-gcc (GCC) 11.3.0
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
# https://github.com/Xilinx/linux-xlnx/commit/0175545bc3e52db0029f52c324cf70f36d113540
git remote add xilinx-xlnx https://github.com/Xilinx/linux-xlnx
git fetch --no-tags xilinx-xlnx xlnx_rebase_v5.15_LTS
git checkout 0175545bc3e52db0029f52c324cf70f36d113540
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.3.0 make.cross W=1 O=build_dir ARCH=arc SHELL=/bin/bash drivers/clk/ drivers/gpu/drm/xlnx/ drivers/media/i2c/ drivers/media/mc/ drivers/media/platform/xilinx/ drivers/misc/ drivers/net/ethernet/xilinx/ drivers/phy/xilinx/ drivers/ptp/ drivers/staging/ drivers/uio/
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/staging/xroeframer/sysfs_xroe.c:106: warning: expecting prototype for version_store(). Prototype was for enable_store() instead
>> drivers/staging/xroeframer/sysfs_xroe.c:552: warning: expecting prototype for utils_sysfs_store_wrapper(). Prototype was for utils_sysfs_show_wrapper() instead
--
>> drivers/staging/xroeframer/sysfs_xroe_framer_ipv6.c:504: warning: expecting prototype for xroe_sysfs_ipv4_exit(). Prototype was for xroe_sysfs_ipv6_exit() instead
--
>> drivers/staging/xroeframer/sysfs_xroe_framer_udp.c:176: warning: expecting prototype for xroe_sysfs_ipv6_exit(). Prototype was for xroe_sysfs_udp_exit() instead
vim +106 drivers/staging/xroeframer/sysfs_xroe.c
91
92 /**
93 * version_store - Writes to the framer's enable status register
94 * @kobj: The kernel object of the entry
95 * @attr: The attributes of the kernel object
96 * @buff: The buffer containing the enable status
97 * @count: The number of characters typed by the user
98 *
99 * Reads the user input and accordingly writes the framer's enable status
100 * to the sysfs entry
101 *
102 * Return: XROE_SIZE_MAX or the value of "count", if that's lesser, on success
103 */
104 static ssize_t enable_store(struct kobject *kobj, struct kobj_attribute *attr,
105 const char *buff, size_t count)
> 106 {
107 u32 enable = 0;
108
109 xroe_size = min_t(size_t, count, (size_t)XROE_SIZE_MAX);
110 strncpy(xroe_tmp, buff, xroe_size);
111 if (strncmp(xroe_tmp, "true", xroe_size) == 0)
112 enable = 1;
113 else if (strncmp(xroe_tmp, "false", xroe_size) == 0)
114 enable = 0;
115 utils_sysfs_store_wrapper(CFG_MASTER_INT_ENABLE_ADDR,
116 CFG_MASTER_INT_ENABLE_OFFSET,
117 CFG_MASTER_INT_ENABLE_MASK, enable, kobj);
118 return xroe_size;
119 }
120
--
0-DAY CI Kernel Test Service
https://01.org/lkp
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
reply other threads:[~2022-05-07 5:13 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=202205071337.nPiYuFcK-lkp@intel.com \
--to=lkp@intel.com \
--cc=kbuild-all@lists.01.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=monstr@monstr.eu \
--cc=vasileios.bimpikas@xilinx.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).