Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

devm-helpers: Fix a misspelled cancellation in the comments

Fix a misspelled cancellation in the comments.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20240503173843.2922111-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Hans de Goede <hdegoede@redhat.com>

authored by

Andy Shevchenko and committed by
Hans de Goede
b444dfc8 d9bab776

+2 -2
+2 -2
include/linux/devm-helpers.h
··· 41 41 * detached. A few drivers need delayed work which must be cancelled before 42 42 * driver is detached to avoid accessing removed resources. 43 43 * devm_delayed_work_autocancel() can be used to omit the explicit 44 - * cancelleation when driver is detached. 44 + * cancellation when driver is detached. 45 45 */ 46 46 static inline int devm_delayed_work_autocancel(struct device *dev, 47 47 struct delayed_work *w, ··· 66 66 * A few drivers need to queue work which must be cancelled before driver 67 67 * is detached to avoid accessing removed resources. 68 68 * devm_work_autocancel() can be used to omit the explicit 69 - * cancelleation when driver is detached. 69 + * cancellation when driver is detached. 70 70 */ 71 71 static inline int devm_work_autocancel(struct device *dev, 72 72 struct work_struct *w,