@@ -126,7 +126,7 @@ static inline int is_itpm(struct acpi_device *dev)
* correct values in the other bits.' */
static int wait_startup(struct tpm_chip *chip, int l)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
unsigned long stop = jiffies + chip->timeout_a;
do {
@@ -140,7 +140,7 @@ static int wait_startup(struct tpm_chip *chip, int l)
static int check_locality(struct tpm_chip *chip, int l)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
if ((ioread8(priv->iobase + TPM_ACCESS(l)) &
@@ -153,7 +153,7 @@ static int check_locality(struct tpm_chip *chip, int l)
static void release_locality(struct tpm_chip *chip, int l, int force)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
if (force || (ioread8(priv->iobase + TPM_ACCESS(l)) &
@@ -165,7 +165,7 @@ static void release_locality(struct tpm_chip *chip, int l, int force)
static int request_locality(struct tpm_chip *chip, int l)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
unsigned long stop, timeout;
long rc;
@@ -207,7 +207,7 @@ again:
static u8 tpm_tis_status(struct tpm_chip *chip)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
return ioread8(priv->iobase +
@@ -216,7 +216,7 @@ static u8 tpm_tis_status(struct tpm_chip *chip)
static void tpm_tis_ready(struct tpm_chip *chip)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
/* this causes the current command to be aborted */
@@ -226,7 +226,7 @@ static void tpm_tis_ready(struct tpm_chip *chip)
static int get_burstcount(struct tpm_chip *chip)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
unsigned long stop;
int burstcnt;
@@ -249,7 +249,7 @@ static int get_burstcount(struct tpm_chip *chip)
static int recv_data(struct tpm_chip *chip, u8 *buf, size_t count)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
int size = 0, burstcnt;
while (size < count &&
@@ -268,7 +268,7 @@ static int recv_data(struct tpm_chip *chip, u8 *buf, size_t count)
static int tpm_tis_recv(struct tpm_chip *chip, u8 *buf, size_t count)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
int size = 0;
int expected, status;
@@ -324,7 +324,7 @@ MODULE_PARM_DESC(itpm, "Force iTPM workarounds (found on some Lenovo laptops)");
*/
static int tpm_tis_send_data(struct tpm_chip *chip, u8 *buf, size_t len)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
int rc, status, burstcnt;
size_t count = 0;
@@ -381,7 +381,7 @@ out_err:
static void disable_interrupts(struct tpm_chip *chip)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
u32 intmask;
@@ -403,7 +403,7 @@ static void disable_interrupts(struct tpm_chip *chip)
*/
static int tpm_tis_send_main(struct tpm_chip *chip, u8 *buf, size_t len)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
int rc;
u32 ordinal;
unsigned long dur;
@@ -441,7 +441,7 @@ out_err:
static int tpm_tis_send(struct tpm_chip *chip, u8 *buf, size_t len)
{
int rc, irq;
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
if (!(chip->flags & TPM_CHIP_FLAG_IRQ) || priv->irq_tested)
return tpm_tis_send_main(chip, buf, len);
@@ -475,7 +475,7 @@ static const struct tis_vendor_timeout_override vendor_timeout_overrides[] = {
static bool tpm_tis_update_timeouts(struct tpm_chip *chip,
unsigned long *timeout_cap)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
int i;
u32 did_vid;
@@ -500,7 +500,7 @@ static bool tpm_tis_update_timeouts(struct tpm_chip *chip,
*/
static int probe_itpm(struct tpm_chip *chip)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
int rc = 0;
u8 cmd_getticks[] = {
@@ -543,7 +543,7 @@ out:
static bool tpm_tis_req_canceled(struct tpm_chip *chip, u8 status)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
switch (priv->manufacturer_id) {
case TPM_VID_WINBOND:
@@ -570,7 +570,7 @@ static const struct tpm_class_ops tpm_tis = {
static irqreturn_t tis_int_handler(int dummy, void *dev_id)
{
struct tpm_chip *chip = dev_id;
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
u32 interrupt;
int i;
@@ -608,7 +608,7 @@ static irqreturn_t tis_int_handler(int dummy, void *dev_id)
static int tpm_tis_probe_irq_single(struct tpm_chip *chip, u32 intmask,
int flags, int irq)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
u8 original_int_vec;
@@ -662,7 +662,7 @@ static int tpm_tis_probe_irq_single(struct tpm_chip *chip, u32 intmask,
*/
static void tpm_tis_probe_irq(struct tpm_chip *chip, u32 intmask)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
u8 original_int_vec;
int i;
@@ -687,7 +687,7 @@ MODULE_PARM_DESC(interrupts, "Enable interrupts");
static void tpm_tis_remove(struct tpm_chip *chip)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
struct tpm_tis_phy *phy = priv->phy_id;
void __iomem *reg = priv->iobase + TPM_INT_ENABLE(priv->locality);
@@ -704,10 +704,10 @@ static int tpm_tis_init(struct device *dev, struct tpm_info *tpm_info,
u32 vendor, intfcaps, intmask;
int rc, probe;
struct tpm_chip *chip;
- struct priv_data *priv;
+ struct tpm_tis_data *priv;
struct tpm_tis_phy *phy;
- priv = devm_kzalloc(dev, sizeof(struct priv_data), GFP_KERNEL);
+ priv = devm_kzalloc(dev, sizeof(struct tpm_tis_data), GFP_KERNEL);
if (priv == NULL)
return -ENOMEM;
@@ -860,7 +860,7 @@ out_err:
#ifdef CONFIG_PM_SLEEP
static void tpm_tis_reenable_interrupts(struct tpm_chip *chip)
{
- struct priv_data *priv = dev_get_drvdata(&chip->dev);
+ struct tpm_tis_data *priv = dev_get_drvdata(&chip->dev);
u32 intmask;
/* reenable interrupts that device may have lost or
@@ -25,7 +25,7 @@
#include "tpm.h"
-struct priv_data {
+struct tpm_tis_data {
u16 manufacturer_id;
int locality;
int irq;
For code sanity rename priv_data tpm_tis_data. Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com> --- drivers/char/tpm/tpm_tis.c | 46 ++++++++++++++++++++--------------------- drivers/char/tpm/tpm_tis_core.h | 2 +- 2 files changed, 24 insertions(+), 24 deletions(-)