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.

mei: docs: fix spelling errors

Fix spelling errors in the mei code base.

Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Link: https://lore.kernel.org/r/20231011074301.223879-4-tomas.winkler@intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Tomas Winkler and committed by
Greg Kroah-Hartman
ae4cb6bd d37b59c7

+10 -10
+2 -2
drivers/misc/mei/bus.c
··· 1385 1385 * @bus: mei device 1386 1386 * @me_cl: me client 1387 1387 * 1388 - * Return: allocated device structur or NULL on allocation failure 1388 + * Return: allocated device structure or NULL on allocation failure 1389 1389 */ 1390 1390 static struct mei_cl_device *mei_cl_bus_dev_alloc(struct mei_device *bus, 1391 1391 struct mei_me_client *me_cl) ··· 1445 1445 * 1446 1446 * @cldev: me client device 1447 1447 * 1448 - * Return: 0 on success; < 0 on failre 1448 + * Return: 0 on success; < 0 on failure 1449 1449 */ 1450 1450 static int mei_cl_bus_dev_add(struct mei_cl_device *cldev) 1451 1451 {
+1 -1
drivers/misc/mei/dma-ring.c
··· 161 161 /** 162 162 * mei_dma_ring_read() - read data from the ring 163 163 * @dev: mei device 164 - * @buf: buffer to read into: may be NULL in case of droping the data. 164 + * @buf: buffer to read into: may be NULL in case of dropping the data. 165 165 * @len: length to read. 166 166 */ 167 167 void mei_dma_ring_read(struct mei_device *dev, unsigned char *buf, u32 len)
+2 -2
drivers/misc/mei/hbm.c
··· 111 111 } 112 112 113 113 /** 114 - * mei_hbm_reset - reset hbm counters and book keeping data structurs 114 + * mei_hbm_reset - reset hbm counters and book keeping data structures 115 115 * 116 116 * @dev: the device structure 117 117 */ ··· 907 907 } 908 908 909 909 /** 910 - * mei_hbm_cl_disconnect_rsp - sends disconnect respose to the FW 910 + * mei_hbm_cl_disconnect_rsp - sends disconnect response to the FW 911 911 * 912 912 * @dev: the device structure 913 913 * @cl: a client to disconnect from
+1 -1
drivers/misc/mei/interrupt.c
··· 72 72 discard_len = 0; 73 73 } 74 74 /* 75 - * no need to check for size as it is guarantied 75 + * no need to check for size as it is guaranteed 76 76 * that length fits into rd_msg_buf 77 77 */ 78 78 mei_read_slots(dev, dev->rd_msg_buf, discard_len);
+2 -2
drivers/misc/mei/mei_dev.h
··· 70 70 /** 71 71 * enum mei_dev_pxp_mode - MEI PXP mode state 72 72 * 73 - * @MEI_DEV_PXP_DEFAULT: PCH based device, no initailization required 73 + * @MEI_DEV_PXP_DEFAULT: PCH based device, no initialization required 74 74 * @MEI_DEV_PXP_INIT: device requires initialization, send setup message to firmware 75 - * @MEI_DEV_PXP_SETUP: device is in setup stage, waiting for firmware repsonse 75 + * @MEI_DEV_PXP_SETUP: device is in setup stage, waiting for firmware response 76 76 * @MEI_DEV_PXP_READY: device initialized 77 77 */ 78 78 enum mei_dev_pxp_mode {
+2 -2
include/linux/mei_cl_bus.h
··· 31 31 * @rx_work: async work to execute Rx event callback 32 32 * @rx_cb: Drivers register this callback to get asynchronous ME 33 33 * Rx buffer pending notifications. 34 - * @notif_work: async work to execute FW notif event callback 34 + * @notif_work: async work to execute FW notify event callback 35 35 * @notif_cb: Drivers register this callback to get asynchronous ME 36 36 * FW notification pending notifications. 37 37 * 38 - * @do_match: wheather device can be matched with a driver 38 + * @do_match: whether the device can be matched with a driver 39 39 * @is_added: device is already scanned 40 40 * @priv_data: client private data 41 41 */