drm/rockchip: Don't change hdmi reference clock rate
[drm/drm-misc.git] / drivers / md / dm-vdo / murmurhash3.h
blobd84711ddb659eea4f9108666a2895e161ad6eed9
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /*
3 * MurmurHash3 was written by Austin Appleby, and is placed in the public
4 * domain. The author hereby disclaims copyright to this source code.
5 */
7 #ifndef _MURMURHASH3_H_
8 #define _MURMURHASH3_H_
10 #include <linux/compiler.h>
11 #include <linux/types.h>
13 void murmurhash3_128(const void *key, int len, u32 seed, void *out);
15 #endif /* _MURMURHASH3_H_ */