update copyright date to 2013
[dpdk.git] / lib / librte_hash / rte_jhash.h
index 12f794c..356e0e4 100644 (file)
@@ -1,7 +1,7 @@
 /*-
  *   BSD LICENSE
  * 
- *   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
+ *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
  *   All rights reserved.
  * 
  *   Redistribution and use in source and binary forms, with or without 
@@ -30,7 +30,6 @@
  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  * 
- *  version: DPDK.L.1.2.3-3
  */
 
 #ifndef _RTE_JHASH_H
@@ -218,9 +217,6 @@ rte_jhash_3words(uint32_t a, uint32_t b, uint32_t c, uint32_t initval)
  * A special ultra-optimized versions that knows it is hashing exactly
  * 2 words.
  *
- * NOTE: In partilar the "c += length; __rte_jhash_mix(a,b,c);" normally
- *       done at the end is not done here.
- *
  * @param a
  *   First word to calcuate hash of.
  * @param b
@@ -240,9 +236,6 @@ rte_jhash_2words(uint32_t a, uint32_t b, uint32_t initval)
  * A special ultra-optimized versions that knows it is hashing exactly
  * 1 word.
  *
- * NOTE: In partilar the "c += length; __rte_jhash_mix(a,b,c);" normally
- *       done at the end is not done here.
- *
  * @param a
  *   Word to calcuate hash of.
  * @param initval