diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2014-09-29 16:42:43 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2014-09-29 16:42:43 +0200 |
commit | 4f2c32268c348c086063d429d705022d8fdb2747 (patch) | |
tree | 239f86d5cfb779237076ee91bbf859d2e4846187 | |
parent | ae5ba8e4d67094e9c61c54669221be69bd232fa8 (diff) |
ring_rx: Fix typo in header guard #endif
It's HAVE_TPACKET3, not HAVE_TPACKETV3.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r-- | ring_rx.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -37,6 +37,6 @@ static inline void kernel_may_pull_from_rx_block(struct block_desc *pbd) { pbd->h1.block_status = TP_STATUS_KERNEL; } -#endif /* HAVE_TPACKETV3 */ +#endif /* HAVE_TPACKET3 */ #endif /* RX_RING_H */ |