mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-23 18:39:17 -05:00
cxl: Remove unnecessary type cast in cxl_qos_class_verify()
The passed in host bridge parameter for device_for_each_child() has unnecessary void * type cast. Remove the type cast. Suggested-by: Jonathan Cameron <Jonathan.Cameron@Huawei.com> Signed-off-by: Dave Jiang <dave.jiang@intel.com> Link: https://lore.kernel.org/r/20240206190431.1810289-3-dave.jiang@intel.com Reviewed-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
This commit is contained in:
@@ -334,8 +334,7 @@ static int cxl_qos_class_verify(struct cxl_memdev *cxlmd)
|
||||
|
||||
/* Check to make sure that the device's host bridge is under a root decoder */
|
||||
rc = device_for_each_child(&root_port->dev,
|
||||
(void *)cxlmd->endpoint->host_bridge,
|
||||
match_cxlrd_hb);
|
||||
cxlmd->endpoint->host_bridge, match_cxlrd_hb);
|
||||
if (!rc) {
|
||||
reset_dpa_perf(&mds->ram_perf);
|
||||
reset_dpa_perf(&mds->pmem_perf);
|
||||
|
||||
Reference in New Issue
Block a user