Skip to content

Commit 1c9dbd4

Browse files
committed
Merge branch 'akpm' (patches from Andrew)
Merge misc fixes from Andrew Morton: "2 fixes" * emailed patches from Andrew Morton <akpm@linux-foundation.org>: MAINTAINERS: update TPM driver infrastructure changes sysctl: add register_sysctl() dummy helper
2 parents 5cff368 + 60fdb44 commit 1c9dbd4

3 files changed

Lines changed: 15 additions & 12 deletions

File tree

CREDITS

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2113,6 +2113,10 @@ S: J. Obrechtstr 23
21132113
S: NL-5216 GP 's-Hertogenbosch
21142114
S: The Netherlands
21152115

2116+
N: Ashley Lai
2117+
E: ashleydlai@gmail.com
2118+
D: IBM VTPM driver
2119+
21162120
N: Savio Lam
21172121
E: lam836@cs.cuhk.hk
21182122
D: Author of the dialog utility, foundation
@@ -3333,6 +3337,10 @@ S: Braunschweiger Strasse 79
33333337
S: 31134 Hildesheim
33343338
S: Germany
33353339

3340+
N: Marcel Selhorst
3341+
E: tpmdd@selhorst.net
3342+
D: TPM driver
3343+
33363344
N: Darren Senn
33373345
E: sinster@darkwater.com
33383346
D: Whatever I notice needs doing (so far: itimers, /proc)
@@ -4128,7 +4136,6 @@ D: MD driver
41284136
D: EISA/sysfs subsystem
41294137
S: France
41304138

4131-
41324139
# Don't add your name here, unless you really _are_ after Marc
41334140
# alphabetically. Leonard used to be very proud of being the
41344141
# last entry, and he'll get positively pissed if he can't even

MAINTAINERS

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13611,23 +13611,14 @@ F: drivers/platform/x86/toshiba-wmi.c
1361113611

1361213612
TPM DEVICE DRIVER
1361313613
M: Peter Huewe <peterhuewe@gmx.de>
13614-
M: Marcel Selhorst <tpmdd@selhorst.net>
1361513614
M: Jarkko Sakkinen <jarkko.sakkinen@linux.intel.com>
1361613615
R: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
13617-
W: http://tpmdd.sourceforge.net
13618-
L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
13619-
Q: https://patchwork.kernel.org/project/tpmdd-devel/list/
13616+
L: linux-integrity@vger.kernel.org
13617+
Q: https://patchwork.kernel.org/project/linux-integrity/list/
1362013618
T: git git://git.infradead.org/users/jjs/linux-tpmdd.git
1362113619
S: Maintained
1362213620
F: drivers/char/tpm/
1362313621

13624-
TPM IBM_VTPM DEVICE DRIVER
13625-
M: Ashley Lai <ashleydlai@gmail.com>
13626-
W: http://tpmdd.sourceforge.net
13627-
L: tpmdd-devel@lists.sourceforge.net (moderated for non-subscribers)
13628-
S: Maintained
13629-
F: drivers/char/tpm/tpm_ibmvtpm*
13630-
1363113622
TRACING
1363213623
M: Steven Rostedt <rostedt@goodmis.org>
1363313624
M: Ingo Molnar <mingo@redhat.com>

include/linux/sysctl.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,11 @@ static inline struct ctl_table_header *register_sysctl_paths(
213213
return NULL;
214214
}
215215

216+
static inline struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
217+
{
218+
return NULL;
219+
}
220+
216221
static inline void unregister_sysctl_table(struct ctl_table_header * table)
217222
{
218223
}

0 commit comments

Comments
 (0)