diff options
author | Jeff Garzik <jeff@garzik.org> | 2007-10-19 03:10:11 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-10-23 19:53:16 -0400 |
commit | 06efcad0d43a5491602f7d7bfc1ce997cdb0d062 (patch) | |
tree | 17ad5e11fc046c4b0fd8093af161fade77635fd2 /drivers/char/tpm/tpm_tis.c | |
parent | 5712cb3d81566893c3b14e24075cf48ec5c35d00 (diff) | |
download | blackbird-obmc-linux-06efcad0d43a5491602f7d7bfc1ce997cdb0d062.tar.gz blackbird-obmc-linux-06efcad0d43a5491602f7d7bfc1ce997cdb0d062.zip |
Eliminate pointless casts from void* in a few driver irq handlers.
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
Diffstat (limited to 'drivers/char/tpm/tpm_tis.c')
-rw-r--r-- | drivers/char/tpm/tpm_tis.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/tpm/tpm_tis.c b/drivers/char/tpm/tpm_tis.c index a8e808461377..fd771a4d6d18 100644 --- a/drivers/char/tpm/tpm_tis.c +++ b/drivers/char/tpm/tpm_tis.c @@ -381,7 +381,7 @@ static struct tpm_vendor_specific tpm_tis = { static irqreturn_t tis_int_probe(int irq, void *dev_id) { - struct tpm_chip *chip = (struct tpm_chip *) dev_id; + struct tpm_chip *chip = dev_id; u32 interrupt; interrupt = ioread32(chip->vendor.iobase + @@ -401,7 +401,7 @@ static irqreturn_t tis_int_probe(int irq, void *dev_id) static irqreturn_t tis_int_handler(int irq, void *dev_id) { - struct tpm_chip *chip = (struct tpm_chip *) dev_id; + struct tpm_chip *chip = dev_id; u32 interrupt; int i; |