diff options
| author | CNSS_WLAN Service <cnssbldsw@qualcomm.com> | 2017-06-19 18:51:32 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-06-19 18:51:32 -0700 |
| commit | 910a42ba4707558d006db504973bac3241ca5a3b (patch) | |
| tree | d9a2543262875c05a22aa12862059d8c83fca433 | |
| parent | 487f3122585ab1c624455cfd5fe5066710db56d2 (diff) | |
| parent | 791e147ddd75948e6cf22f52874fc786aa9fcf0a (diff) | |
Merge "qcacmn: Fix clang warnings enum qdf_nbuf_l4_rx_cksum_result_t" into wlan-cmn.driver.lnx.1.0-dev
| -rw-r--r-- | qdf/inc/qdf_net_types.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qdf/inc/qdf_net_types.h b/qdf/inc/qdf_net_types.h index 9b4fd6d0ea3b..b31d6f0084b5 100644 --- a/qdf/inc/qdf_net_types.h +++ b/qdf/inc/qdf_net_types.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2016 The Linux Foundation. All rights reserved. + * Copyright (c) 2014-2017 The Linux Foundation. All rights reserved. * * Previously licensed under the ISC license by Qualcomm Atheros, Inc. * @@ -159,6 +159,7 @@ typedef enum { /** * typedef qdf_nbuf_l4_rx_cksum_type_t - receive checksum API types + * @QDF_NBUF_RX_CKSUM_ZERO: Rx checksum zero * @QDF_NBUF_RX_CKSUM_TCP: Rx checksum TCP * @QDF_NBUF_RX_CKSUM_UDP: Rx checksum UDP * @QDF_NBUF_RX_CKSUM_TCPIPV6: Rx checksum TCP IPV6 @@ -168,6 +169,7 @@ typedef enum { * @QDF_NBUF_RX_CKSUM_TCPSUM16: Rx checksum TCP SUM16 */ typedef enum { + QDF_NBUF_RX_CKSUM_ZERO = 0x0000, QDF_NBUF_RX_CKSUM_TCP = 0x0001, QDF_NBUF_RX_CKSUM_UDP = 0x0002, QDF_NBUF_RX_CKSUM_TCPIPV6 = 0x0010, |
