diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-06-01 20:23:10 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-06-05 19:23:25 +0200 |
commit | bd32895c750bcd2b511bf93917bf7ae723e3d0b6 (patch) | |
tree | a725b98bf607e223bf863ab1a22aee4c11c45362 /drivers/staging/ncpfs/getopt.h | |
parent | be65f9ed267fd7d8b3146b7c4be9ecdd3e0aa3ed (diff) | |
download | linux-stable-bd32895c750bcd2b511bf93917bf7ae723e3d0b6.tar.gz linux-stable-bd32895c750bcd2b511bf93917bf7ae723e3d0b6.tar.bz2 linux-stable-bd32895c750bcd2b511bf93917bf7ae723e3d0b6.zip |
staging: ncpfs: delete it
The ncpfs code moved into the staging tree back in November 2017 and no
one has complained or even noticed it was gone. Because of that, let's
just delete it.
Cc: Stephen Hemminger <stephen@networkplumber.org>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/ncpfs/getopt.h')
-rw-r--r-- | drivers/staging/ncpfs/getopt.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/drivers/staging/ncpfs/getopt.h b/drivers/staging/ncpfs/getopt.h deleted file mode 100644 index 30f0da317670..000000000000 --- a/drivers/staging/ncpfs/getopt.h +++ /dev/null @@ -1,17 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 */ -#ifndef _LINUX_GETOPT_H -#define _LINUX_GETOPT_H - -#define OPT_NOPARAM 1 -#define OPT_INT 2 -#define OPT_STRING 4 -struct ncp_option { - const char *name; - unsigned int has_arg; - int val; -}; - -extern int ncp_getopt(const char *caller, char **options, const struct ncp_option *opts, - char **optopt, char **optarg, unsigned long *value); - -#endif /* _LINUX_GETOPT_H */ |