dcf0824c26
This reverts commit55e6f8b3c0which is commit4f0f586bf0upstream. This commit is already in this branch, but in a different fashion, as CFI is included here. By having this version, there is a crc error that is due to the use of typedefs. Reverting this commit changes nothing and fixes the CRC issue. Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: I97849a104acbc88599481f6c5c9d024570ec5c87
14 lines
307 B
C
14 lines
307 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_LIST_SORT_H
|
|
#define _LINUX_LIST_SORT_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct list_head;
|
|
|
|
__attribute__((nonnull(2,3)))
|
|
void list_sort(void *priv, struct list_head *head,
|
|
int (*cmp)(void *priv, struct list_head *a,
|
|
struct list_head *b));
|
|
#endif
|