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.

misc: mei: client.c: fix kernel-doc warnings

Fix kernel-doc warnings in client.c:

client.c:53: warning: contents before sections
client.c:68: warning: contents before sections
client.c:334: warning: contents before sections
client.c:349: warning: contents before sections
client.c:364: warning: contents before sections

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

authored by

Randy Dunlap and committed by
Greg Kroah-Hartman
daa0c28d 5d33dc7d

+10 -10
+10 -10
drivers/misc/mei/client.c
··· 48 48 /** 49 49 * mei_me_cl_release - free me client 50 50 * 51 - * Locking: called under "dev->device_lock" lock 52 - * 53 51 * @ref: me_client refcount 52 + * 53 + * Locking: called under "dev->device_lock" lock 54 54 */ 55 55 static void mei_me_cl_release(struct kref *ref) 56 56 { ··· 63 63 /** 64 64 * mei_me_cl_put - decrease me client refcount and free client if necessary 65 65 * 66 - * Locking: called under "dev->device_lock" lock 67 - * 68 66 * @me_cl: me client 67 + * 68 + * Locking: called under "dev->device_lock" lock 69 69 */ 70 70 void mei_me_cl_put(struct mei_me_client *me_cl) 71 71 { ··· 329 329 /** 330 330 * mei_tx_cb_enqueue - queue tx callback 331 331 * 332 - * Locking: called under "dev->device_lock" lock 333 - * 334 332 * @cb: mei callback struct 335 333 * @head: an instance of list to queue on 334 + * 335 + * Locking: called under "dev->device_lock" lock 336 336 */ 337 337 static inline void mei_tx_cb_enqueue(struct mei_cl_cb *cb, 338 338 struct list_head *head) ··· 344 344 /** 345 345 * mei_tx_cb_dequeue - dequeue tx callback 346 346 * 347 - * Locking: called under "dev->device_lock" lock 348 - * 349 347 * @cb: mei callback struct to dequeue and free 348 + * 349 + * Locking: called under "dev->device_lock" lock 350 350 */ 351 351 static inline void mei_tx_cb_dequeue(struct mei_cl_cb *cb) 352 352 { ··· 359 359 /** 360 360 * mei_cl_set_read_by_fp - set pending_read flag to vtag struct for given fp 361 361 * 362 - * Locking: called under "dev->device_lock" lock 363 - * 364 362 * @cl: mei client 365 363 * @fp: pointer to file structure 364 + * 365 + * Locking: called under "dev->device_lock" lock 366 366 */ 367 367 static void mei_cl_set_read_by_fp(const struct mei_cl *cl, 368 368 const struct file *fp)