Skip to content

Commit

Permalink
pmds: fix macro formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Jalal Mostafa <[email protected]>
  • Loading branch information
jalalmostafa authored and KeithWiles committed May 3, 2024
1 parent 0dde3f3 commit 16a469c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/core/pktdev/pktdev_driver.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ struct pktdev_driver {
*/
void pktdev_register(struct pktdev_driver *driver);

#define PMD_REGISTER_DEV(nm, vdrv) \
CNE_INIT_PRIO(vdrvinit_##vdrv, PMD) \
{ \
(vdrv).name = CNE_STR(nm); \
pktdev_register(&vdrv); \
#define PMD_REGISTER_DEV(nm, vdrv) \
CNE_INIT_PRIO(vdrvinit_##vdrv, PMD) \
{ \
(vdrv).name = CNE_STR(nm); \
pktdev_register(&vdrv); \
}

/**
Expand Down

0 comments on commit 16a469c

Please sign in to comment.