Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
91ef5ccd
Commit
91ef5ccd
authored
Jul 15, 2015
by
James Morris
Browse files
Options
Browse Files
Download
Plain Diff
Merge tag 'tpm-fixes-for-4.2-rc2' of
https://github.com/PeterHuewe/linux-tpmdd
into for-linus
parents
f760b87f
b371616b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
drivers/char/tpm/tpm-chip.c
drivers/char/tpm/tpm-chip.c
+2
-1
drivers/char/tpm/tpm_crb.c
drivers/char/tpm/tpm_crb.c
+8
-0
No files found.
drivers/char/tpm/tpm-chip.c
View file @
91ef5ccd
...
@@ -129,8 +129,9 @@ struct tpm_chip *tpmm_chip_alloc(struct device *dev,
...
@@ -129,8 +129,9 @@ struct tpm_chip *tpmm_chip_alloc(struct device *dev,
device_initialize
(
&
chip
->
dev
);
device_initialize
(
&
chip
->
dev
);
chip
->
cdev
.
owner
=
chip
->
pdev
->
driver
->
owner
;
cdev_init
(
&
chip
->
cdev
,
&
tpm_fops
);
cdev_init
(
&
chip
->
cdev
,
&
tpm_fops
);
chip
->
cdev
.
owner
=
chip
->
pdev
->
driver
->
owner
;
chip
->
cdev
.
kobj
.
parent
=
&
chip
->
dev
.
kobj
;
return
chip
;
return
chip
;
}
}
...
...
drivers/char/tpm/tpm_crb.c
View file @
91ef5ccd
...
@@ -233,6 +233,14 @@ static int crb_acpi_add(struct acpi_device *device)
...
@@ -233,6 +233,14 @@ static int crb_acpi_add(struct acpi_device *device)
return
-
ENODEV
;
return
-
ENODEV
;
}
}
/* At least some versions of AMI BIOS have a bug that TPM2 table has
* zero address for the control area and therefore we must fail.
*/
if
(
!
buf
->
control_area_pa
)
{
dev_err
(
dev
,
"TPM2 ACPI table has a zero address for the control area
\n
"
);
return
-
EINVAL
;
}
if
(
buf
->
hdr
.
length
<
sizeof
(
struct
acpi_tpm2
))
{
if
(
buf
->
hdr
.
length
<
sizeof
(
struct
acpi_tpm2
))
{
dev_err
(
dev
,
"TPM2 ACPI table has wrong size"
);
dev_err
(
dev
,
"TPM2 ACPI table has wrong size"
);
return
-
EINVAL
;
return
-
EINVAL
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment