Commit a4c7d794 authored by Rob Herring's avatar Rob Herring Committed by Jarkko Sakkinen

tpm: nuvoton: Use i2c_get_match_data()

Use preferred i2c_get_match_data() instead of of_match_device() to
get the driver match data. With this, adjust the includes to explicitly
include the correct headers.
Signed-off-by: default avatarRob Herring <robh@kernel.org>
Reviewed-by: default avatarJarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: default avatarJarkko Sakkinen <jarkko@kernel.org>
parent 9f8413c4
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/wait.h> #include <linux/wait.h>
#include <linux/i2c.h> #include <linux/i2c.h>
#include <linux/of_device.h> #include <linux/of.h>
#include <linux/property.h>
#include "tpm.h" #include "tpm.h"
/* I2C interface offsets */ /* I2C interface offsets */
...@@ -524,7 +525,6 @@ static int get_vid(struct i2c_client *client, u32 *res) ...@@ -524,7 +525,6 @@ static int get_vid(struct i2c_client *client, u32 *res)
static int i2c_nuvoton_probe(struct i2c_client *client) static int i2c_nuvoton_probe(struct i2c_client *client)
{ {
const struct i2c_device_id *id = i2c_client_get_device_id(client);
int rc; int rc;
struct tpm_chip *chip; struct tpm_chip *chip;
struct device *dev = &client->dev; struct device *dev = &client->dev;
...@@ -546,15 +546,8 @@ static int i2c_nuvoton_probe(struct i2c_client *client) ...@@ -546,15 +546,8 @@ static int i2c_nuvoton_probe(struct i2c_client *client)
if (!priv) if (!priv)
return -ENOMEM; return -ENOMEM;
if (dev->of_node) { if (i2c_get_match_data(client))
const struct of_device_id *of_id; chip->flags |= TPM_CHIP_FLAG_TPM2;
of_id = of_match_device(dev->driver->of_match_table, dev);
if (of_id && of_id->data == OF_IS_TPM2)
chip->flags |= TPM_CHIP_FLAG_TPM2;
} else
if (id->driver_data == I2C_IS_TPM2)
chip->flags |= TPM_CHIP_FLAG_TPM2;
init_waitqueue_head(&priv->read_queue); init_waitqueue_head(&priv->read_queue);
......
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