diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2024-01-07 06:57:50 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-01-31 00:58:06 +0100 |
commit | f297a3844aa059c53be3f69be85ebc071b8a6d16 (patch) | |
tree | 6ce516d7769c6711455e4870e99435c99c5da4b5 /drivers/base/component.c | |
parent | driver core: cpu: make cpu_subsys const (diff) | |
download | linux-f297a3844aa059c53be3f69be85ebc071b8a6d16.tar.xz linux-f297a3844aa059c53be3f69be85ebc071b8a6d16.zip |
driver core: component: fix spellos
Correct spelling mistakes reported by codespell.
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: "Rafael J. Wysocki" <rafael@kernel.org>
Cc: dri-devel@lists.freedesktop.org
Link: https://lore.kernel.org/r/20240107055750.22441-1-rdunlap@infradead.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/base/component.c')
-rw-r--r-- | drivers/base/component.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/base/component.c b/drivers/base/component.c index 7dbf14a1d915..741497324d78 100644 --- a/drivers/base/component.c +++ b/drivers/base/component.c @@ -751,7 +751,7 @@ static int __component_add(struct device *dev, const struct component_ops *ops, * component_bind_all(). See also &struct component_ops. * * @subcomponent must be nonzero and is used to differentiate between multiple - * components registerd on the same device @dev. These components are match + * components registered on the same device @dev. These components are match * using component_match_add_typed(). * * The component needs to be unregistered at driver unload/disconnect by @@ -781,7 +781,7 @@ EXPORT_SYMBOL_GPL(component_add_typed); * The component needs to be unregistered at driver unload/disconnect by * calling component_del(). * - * See also component_add_typed() for a variant that allows multipled different + * See also component_add_typed() for a variant that allows multiple different * components on the same device. */ int component_add(struct device *dev, const struct component_ops *ops) |