From add0b666e4586ab718bdd2ca440bfb82df72d8df Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Tue, 24 Feb 2009 20:08:20 -0800 Subject: [PATCH] --- yaml --- r: 141743 b: refs/heads/master c: 00db8a8ecc91abeb46d1128a788a194018c51e77 h: refs/heads/master i: 141741: a55c30ffd63ef49ca76498984ea9fa95554d2532 141739: 6c6a945f9b5fbc2e91d54442de0d3952cbc3e247 141735: 5b0fe48500954fa7b3aa4d0432eaa884a06a03d2 141727: 39ab0fd6c0c83fc31e72164d438043e88382fc39 v: v3 --- [refs] | 2 +- trunk/drivers/staging/Kconfig | 2 ++ trunk/drivers/staging/Makefile | 1 + trunk/drivers/staging/p9auth/Kconfig | 8 ++++++++ trunk/drivers/staging/p9auth/Makefile | 1 + 5 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 trunk/drivers/staging/p9auth/Kconfig create mode 100644 trunk/drivers/staging/p9auth/Makefile diff --git a/[refs] b/[refs] index 0c832c8895bc..2530f663b5b3 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 5dba0826999683fe39aa8b49480b0e953afd117a +refs/heads/master: 00db8a8ecc91abeb46d1128a788a194018c51e77 diff --git a/trunk/drivers/staging/Kconfig b/trunk/drivers/staging/Kconfig index 29dfff77e3b0..f968de749391 100644 --- a/trunk/drivers/staging/Kconfig +++ b/trunk/drivers/staging/Kconfig @@ -105,5 +105,7 @@ source "drivers/staging/b3dfg/Kconfig" source "drivers/staging/phison/Kconfig" +source "drivers/staging/p9auth/Kconfig" + endif # !STAGING_EXCLUDE_BUILD endif # STAGING diff --git a/trunk/drivers/staging/Makefile b/trunk/drivers/staging/Makefile index a9b85e8bdc5d..7e972667a630 100644 --- a/trunk/drivers/staging/Makefile +++ b/trunk/drivers/staging/Makefile @@ -35,3 +35,4 @@ obj-$(CONFIG_STLC45XX) += stlc45xx/ obj-$(CONFIG_USB_SERIAL_ATEN2011) += uc2322/ obj-$(CONFIG_B3DFG) += b3dfg/ obj-$(CONFIG_IDE_PHISON) += phison/ +obj-$(CONFIG_PLAN9AUTH) += p9auth/ diff --git a/trunk/drivers/staging/p9auth/Kconfig b/trunk/drivers/staging/p9auth/Kconfig new file mode 100644 index 000000000000..f53884457447 --- /dev/null +++ b/trunk/drivers/staging/p9auth/Kconfig @@ -0,0 +1,8 @@ +config PLAN9AUTH + tristate "Plan 9 style capability device implementation" + default n + help + This module implements the Plan 9 style capability device. + + To compile this driver as a module, choose + M here: the module will be called p9auth. diff --git a/trunk/drivers/staging/p9auth/Makefile b/trunk/drivers/staging/p9auth/Makefile new file mode 100644 index 000000000000..3ebf6ff0eef2 --- /dev/null +++ b/trunk/drivers/staging/p9auth/Makefile @@ -0,0 +1 @@ +obj-$(CONFIG_PLAN9AUTH) += p9auth.o