Skip to content

Commit 2f8d3fd

Browse files
Jerin Jacobtmonjalo
authored andcommitted
lib: fix backticks matching in Doxygen comments
Doxygen 1.15 detects valid errors. Fixing the same. Example: lib/eventdev/rte_event_timer_adapter.h:720: error: Reached end of file while still searching closing '`' of a verbatim block starting at line 569 (warning treated as error, aborting now) Fixes: a6562f6 ("eventdev: introduce event timer adapter") Cc: [email protected] Signed-off-by: Jerin Jacob <[email protected]> Acked-by: Stephen Hemminger <[email protected]> Acked-by: Erik Gabriel Carrillo <[email protected]>
1 parent 994644d commit 2f8d3fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/eventdev/rte_event_timer_adapter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ struct __rte_cache_aligned rte_event_timer_adapter {
566566
* Before calling this function, the application allocates
567567
* ``struct rte_event_timer`` objects from mempool or huge page backed
568568
* application buffers of desired size. On successful allocation,
569-
* application updates the `struct rte_event_timer`` attributes such as
569+
* application updates the ``struct rte_event_timer`` attributes such as
570570
* expiry event attributes, timeout ticks from now.
571571
* This function submits the event timer arm requests to the event timer adapter
572572
* and on expiry, the events will be injected to designated event queue.

lib/rawdev/rte_rawdev_pmd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ typedef int (*rawdev_firmware_version_get_t)(struct rte_rawdev *dev,
506506
* >0, ~0: for successful load
507507
* <0: for failure
508508
*
509-
* @see Application may use 'firmware_version_get` for ascertaining successful
509+
* @see Application may use `firmware_version_get` for ascertaining successful
510510
* load
511511
*/
512512
typedef int (*rawdev_firmware_load_t)(struct rte_rawdev *dev,

0 commit comments

Comments
 (0)