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: fix doc typos

Fix grammar and punctuation.

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

authored by

Randy Dunlap and committed by
Greg Kroah-Hartman
bd4da04c 3c69d52e

+7 -7
+7 -7
include/uapi/linux/mei.h
··· 14 14 * FW Client (given by UUID). This opens a communication channel 15 15 * between a host client and a FW client. From this point every read and write 16 16 * will communicate with the associated FW client. 17 - * Only in close() (file_operation release()) the communication between 18 - * the clients is disconnected 17 + * Only in close() (file_operation release()) is the communication between 18 + * the clients disconnected. 19 19 * 20 20 * The IOCTL argument is a struct with a union that contains 21 21 * the input parameter and the output parameter for this IOCTL. ··· 51 51 * DOC: set and unset event notification for a connected client 52 52 * 53 53 * The IOCTL argument is 1 for enabling event notification and 0 for 54 - * disabling the service 54 + * disabling the service. 55 55 * Return: -EOPNOTSUPP if the devices doesn't support the feature 56 56 */ 57 57 #define IOCTL_MEI_NOTIFY_SET _IOW('H', 0x02, __u32) ··· 59 59 /** 60 60 * DOC: retrieve notification 61 61 * 62 - * The IOCTL output argument is 1 if an event was is pending and 0 otherwise 63 - * the ioctl has to be called in order to acknowledge pending event 62 + * The IOCTL output argument is 1 if an event was pending and 0 otherwise. 63 + * The ioctl has to be called in order to acknowledge pending event. 64 64 * 65 65 * Return: -EOPNOTSUPP if the devices doesn't support the feature 66 66 */ ··· 98 98 * FW Client (given by UUID), and virtual tag (vtag). 99 99 * The IOCTL opens a communication channel between a host client and 100 100 * a FW client on a tagged channel. From this point on, every read 101 - * and write will communicate with the associated FW client with 101 + * and write will communicate with the associated FW client 102 102 * on the tagged channel. 103 103 * Upone close() the communication is terminated. 104 104 * 105 105 * The IOCTL argument is a struct with a union that contains 106 106 * the input parameter and the output parameter for this IOCTL. 107 107 * 108 - * The input parameter is UUID of the FW Client, a vtag [0,255] 108 + * The input parameter is UUID of the FW Client, a vtag [0,255]. 109 109 * The output parameter is the properties of the FW client 110 110 * (FW protocool version and max message size). 111 111 *