Commit d46067dc authored by Simon Horman's avatar Simon Horman Committed by David S. Miller

[JHASH]: Make key arg const in jhash().

parent 48c98998
...@@ -41,10 +41,10 @@ ...@@ -41,10 +41,10 @@
* of bytes. No alignment or length assumptions are made about * of bytes. No alignment or length assumptions are made about
* the input key. * the input key.
*/ */
static inline u32 jhash(void *key, u32 length, u32 initval) static inline u32 jhash(const void *key, u32 length, u32 initval)
{ {
u32 a, b, c, len; u32 a, b, c, len;
u8 *k = key; const u8 *k = key;
len = length; len = length;
a = b = JHASH_GOLDEN_RATIO; a = b = JHASH_GOLDEN_RATIO;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment