Commit eff33245 authored by Yu Zhe's avatar Yu Zhe Committed by Jarkko Sakkinen

tpm: remove unnecessary (void*) conversions

Pointer variables of void * type do not require type cast.
Signed-off-by: default avatarYu Zhe <yuzhe@nfschina.com>
Reviewed-by: default avatarJarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: default avatarJarkko Sakkinen <jarkko@kernel.org>
parent 96785d63
...@@ -36,7 +36,7 @@ static int tpm_bios_measurements_open(struct inode *inode, ...@@ -36,7 +36,7 @@ static int tpm_bios_measurements_open(struct inode *inode,
inode_unlock(inode); inode_unlock(inode);
return -ENODEV; return -ENODEV;
} }
chip_seqops = (struct tpm_chip_seqops *)inode->i_private; chip_seqops = inode->i_private;
seqops = chip_seqops->seqops; seqops = chip_seqops->seqops;
chip = chip_seqops->chip; chip = chip_seqops->chip;
get_device(&chip->dev); get_device(&chip->dev);
...@@ -55,8 +55,8 @@ static int tpm_bios_measurements_open(struct inode *inode, ...@@ -55,8 +55,8 @@ static int tpm_bios_measurements_open(struct inode *inode,
static int tpm_bios_measurements_release(struct inode *inode, static int tpm_bios_measurements_release(struct inode *inode,
struct file *file) struct file *file)
{ {
struct seq_file *seq = (struct seq_file *)file->private_data; struct seq_file *seq = file->private_data;
struct tpm_chip *chip = (struct tpm_chip *)seq->private; struct tpm_chip *chip = seq->private;
put_device(&chip->dev); put_device(&chip->dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment