Re: [PATCH v4 06/11] driver core: Remove match_any()
Jonathan Cameron <[email protected]>
| Newsgroups | gmane.linux.kernel.gpio,gmane.linux.kernel,gmane.linux.sound,gmane.linux.ports.sparc,gmane.linux.block,gmane.linux.kernel.firewire.devel,gmane.linux.kernel.efi,gmane.comp.video.dri.devel,gmane.linux.ports.arm.mediatek,gmane.linux.kernel.hwmon,gmane.linux.drivers.video-input-infrastructure,gmane.linux.pwm,gmane.linux.scsi,gmane.linux.usb.general,gmane.linux.serial,gmane.linux.network |
|---|---|
| Message-ID | <[email protected]> |
On Wed, 11 Dec 2024 08:08:08 +0800 Zijun Hu <[email protected]> wrote: > From: Zijun Hu <[email protected]> > > Static match_any() is exactly same as API device_match_any(). is now exactly... perhaps to call out that it wasn't prior to this set! > Remove the former and use the later instead. > > Signed-off-by: Zijun Hu <[email protected]> Reviewed-by: Jonathan Cameron <[email protected]> > --- > drivers/base/core.c | 7 +------ > 1 file changed, 1 insertion(+), 6 deletions(-) > > diff --git a/drivers/base/core.c b/drivers/base/core.c > index 8116bc8dd6e9eba0653ca686a90c7008de9e2840..289f2dafa8f3831931d0f316d66ee12c2cb8a2e1 100644 > --- a/drivers/base/core.c > +++ b/drivers/base/core.c > @@ -4114,11 +4114,6 @@ struct device *device_find_child_by_name(struct device *parent, > } > EXPORT_SYMBOL_GPL(device_find_child_by_name); > > -static int match_any(struct device *dev, const void *unused) > -{ > - return 1; > -} > - > /** > * device_find_any_child - device iterator for locating a child device, if any. > * @parent: parent struct device > @@ -4130,7 +4125,7 @@ static int match_any(struct device *dev, const void *unused) > */ > struct device *device_find_any_child(struct device *parent) > { > - return device_find_child(parent, NULL, match_any); > + return device_find_child(parent, NULL, device_match_any); > } > EXPORT_SYMBOL_GPL(device_find_any_child); > >