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 <[email protected]>: MAINTAINERS: update TPM driver infrastructure changes sysctl: add register_sysctl() dummy helper
2 parents 5cff368 + 60fdb44 commit 1c9dbd4

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed

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+
2118+
D: IBM VTPM driver
2119+
21162120
N: Savio Lam
21172121
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+
3342+
D: TPM driver
3343+
33363344
N: Darren Senn
33373345
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 <[email protected]>
13614-
M: Marcel Selhorst <[email protected]>
1361513614
M: Jarkko Sakkinen <[email protected]>
1361613615
R: Jason Gunthorpe <[email protected]>
13617-
W: http://tpmdd.sourceforge.net
13618-
L: [email protected] (moderated for non-subscribers)
13619-
Q: https://patchwork.kernel.org/project/tpmdd-devel/list/
13616+
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 <[email protected]>
13626-
W: http://tpmdd.sourceforge.net
13627-
L: [email protected] (moderated for non-subscribers)
13628-
S: Maintained
13629-
F: drivers/char/tpm/tpm_ibmvtpm*
13630-
1363113622
TRACING
1363213623
M: Steven Rostedt <[email protected]>
1363313624
M: Ingo Molnar <[email protected]>

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)