doc: fix build with sphinx 4.5

Latest Sphinx checks C language syntax more aggressively.
Fix the following warning by correcting C language syntax.

doc/guides/prog_guide/event_ethernet_rx_adapter.rst:243:
WARNING: Could not lex literal_block as "c". Highlighting skipped.

Fixes: 3c838062b9 ("eventdev: introduce event vector Rx capability")
Cc: stable@dpdk.org

Signed-off-by: Jerin Jacob <jerinj@marvell.com>
Acked-by: Jay Jayatheerthan <jay.jayatheerthan@intel.com>
This commit is contained in:
Jerin Jacob 2022-05-01 20:27:21 +05:30
parent 18ca4a4ec7
commit fe45ccd205

View File

@ -257,8 +257,8 @@ A loop processing ``rte_event_vector`` containing mbufs is shown below.
/* Process each mbuf. */ /* Process each mbuf. */
} }
break; break;
case ... case default:
... /* Handle other event_types. */
} }
Rx event vectorization for SW Rx adapter Rx event vectorization for SW Rx adapter