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

slimbus: fix kerneldoc comments

The kerneldoc comments in drivers/slimbus/stream.c were not properly
formatted, leading to a distinctly unsatisfying "no structured comments
found" warning in the docs build. Sprinkle some asterisks around so that
the comments will be properly recognized.

Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Jonathan Corbet and committed by
Greg Kroah-Hartman
2f0f2441 ee3095c1

+6 -6
+6 -6
drivers/slimbus/stream.c
··· 84 84 512000, 85 85 }; 86 86 87 - /* 87 + /** 88 88 * slim_stream_allocate() - Allocate a new SLIMbus Stream 89 89 * @dev:Slim device to be associated with 90 90 * @name: name of the stream ··· 189 189 return -EINVAL; 190 190 } 191 191 192 - /* 192 + /** 193 193 * slim_stream_prepare() - Prepare a SLIMbus Stream 194 194 * 195 195 * @rt: instance of slim stream runtime to configure ··· 336 336 return slim_do_transfer(sdev->ctrl, &txn); 337 337 } 338 338 339 - /* 339 + /** 340 340 * slim_stream_enable() - Enable a prepared SLIMbus Stream 341 341 * 342 342 * @stream: instance of slim stream runtime to enable ··· 389 389 } 390 390 EXPORT_SYMBOL_GPL(slim_stream_enable); 391 391 392 - /* 392 + /** 393 393 * slim_stream_disable() - Disable a SLIMbus Stream 394 394 * 395 395 * @stream: instance of slim stream runtime to disable ··· 423 423 } 424 424 EXPORT_SYMBOL_GPL(slim_stream_disable); 425 425 426 - /* 426 + /** 427 427 * slim_stream_unprepare() - Un-prepare a SLIMbus Stream 428 428 * 429 429 * @stream: instance of slim stream runtime to unprepare ··· 449 449 } 450 450 EXPORT_SYMBOL_GPL(slim_stream_unprepare); 451 451 452 - /* 452 + /** 453 453 * slim_stream_free() - Free a SLIMbus Stream 454 454 * 455 455 * @stream: instance of slim stream runtime to free