* arch/parisc/kernel/drivers.c:745:19-20: Unneeded semicolon
@ 2024-01-22 12:20 kernel test robot
0 siblings, 0 replies; only message in thread
From: kernel test robot @ 2024-01-22 12:20 UTC (permalink / raw)
To: Helge Deller; +Cc: oe-kbuild-all, linux-kernel
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 6613476e225e090cc9aad49be7fa504e290dd33d
commit: ac9fb7d2b71d8353603534a5e5cc92f54fd7e219 parisc: drivers: Fix kdoc warnings
date: 7 months ago
config: parisc-randconfig-r062-20240122 (https://download.01.org/0day-ci/archive/20240122/202401222059.Wli6OGT0-lkp@intel.com/config)
compiler: hppa-linux-gcc (GCC) 13.2.0
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/202401222059.Wli6OGT0-lkp@intel.com/
cocci warnings: (new ones prefixed by >>)
>> arch/parisc/kernel/drivers.c:745:19-20: Unneeded semicolon
vim +745 arch/parisc/kernel/drivers.c
720
721 /**
722 * parse_tree_node - returns a device entry in the iotree
723 * @parent: the parent node in the tree
724 * @index: the current BC index
725 * @modpath: the hardware_path struct to match a device against
726 * @return: The corresponding device if found, NULL otherwise.
727 *
728 * Checks all the children of @parent for a matching @id. If none
729 * found, it returns NULL.
730 */
731 static struct device *
732 parse_tree_node(struct device *parent, int index, struct hardware_path *modpath)
733 {
734 struct parse_tree_data d = {
735 .index = index,
736 .modpath = modpath,
737 };
738
739 struct recurse_struct recurse_data = {
740 .obj = &d,
741 .fn = check_parent,
742 };
743
744 if (device_for_each_child(parent, &recurse_data, descend_children))
> 745 { /* nothing */ };
746
747 return d.dev;
748 }
749
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2024-01-22 12:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-22 12:20 arch/parisc/kernel/drivers.c:745:19-20: Unneeded semicolon kernel test robot
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.