mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 17:13:52 +02:00
Remove externs, correct argument names and reformat declarations. Signed-off-by: David Howells <dhowells@redhat.com> cc: Steve French <sfrench@samba.org> cc: Paulo Alcantara <pc@manguebit.org> cc: Enzo Matsumiya <ematsumiya@suse.de> cc: linux-cifs@vger.kernel.org cc: linux-fsdevel@vger.kernel.org cc: linux-kernel@vger.kernel.org Acked-by: Enzo Matsumiya <ematsumiya@suse.de> Signed-off-by: Steve French <stfrench@microsoft.com>
17 lines
312 B
C
17 lines
312 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Netlink routines for CIFS
|
|
*
|
|
* Copyright (c) 2020 Samuel Cabrero <scabrero@suse.de>
|
|
*/
|
|
|
|
#ifndef _CIFS_NETLINK_H
|
|
#define _CIFS_NETLINK_H
|
|
|
|
extern struct genl_family cifs_genl_family;
|
|
|
|
int cifs_genl_init(void);
|
|
void cifs_genl_exit(void);
|
|
|
|
#endif /* _CIFS_NETLINK_H */
|