Commit 875edad5 authored by Christophe Ricard's avatar Christophe Ricard Committed by Peter Huewe

tpm/tpm_i2c_stm_st33: Replace tpm_st33_* function with tpm_stm_*

For sanity, replace every tpm_st33_* with tpm_stm_*
Reviewed-by: default avatarJason Gunthorpe <jgunthorpe@obsidianresearch.com>
Signed-off-by: default avatarChristophe Ricard <christophe-h.ricard@st.com>
Signed-off-by: default avatarPeter Huewe <peterhuewe@gmx.de>
parent ca16b767
...@@ -224,7 +224,7 @@ static int wait_for_serirq_timeout(struct tpm_chip *chip, bool condition, ...@@ -224,7 +224,7 @@ static int wait_for_serirq_timeout(struct tpm_chip *chip, bool condition,
status = 1; status = 1;
} }
return status; return status;
} } /* wait_for_serirq_timeout() */
/* /*
* tpm_stm_i2c_cancel, cancel is not implemented. * tpm_stm_i2c_cancel, cancel is not implemented.
...@@ -591,7 +591,7 @@ static int tpm_stm_i2c_recv(struct tpm_chip *chip, unsigned char *buf, ...@@ -591,7 +591,7 @@ static int tpm_stm_i2c_recv(struct tpm_chip *chip, unsigned char *buf,
return size; return size;
} }
static bool tpm_st33_i2c_req_canceled(struct tpm_chip *chip, u8 status) static bool tpm_stm_i2c_req_canceled(struct tpm_chip *chip, u8 status)
{ {
return (status == TPM_STS_COMMAND_READY); return (status == TPM_STS_COMMAND_READY);
} }
...@@ -603,7 +603,7 @@ static const struct tpm_class_ops st_i2c_tpm = { ...@@ -603,7 +603,7 @@ static const struct tpm_class_ops st_i2c_tpm = {
.status = tpm_stm_i2c_status, .status = tpm_stm_i2c_status,
.req_complete_mask = TPM_STS_DATA_AVAIL | TPM_STS_VALID, .req_complete_mask = TPM_STS_DATA_AVAIL | TPM_STS_VALID,
.req_complete_val = TPM_STS_DATA_AVAIL | TPM_STS_VALID, .req_complete_val = TPM_STS_DATA_AVAIL | TPM_STS_VALID,
.req_canceled = tpm_st33_i2c_req_canceled, .req_canceled = tpm_stm_i2c_req_canceled,
}; };
static int interrupts; static int interrupts;
...@@ -615,14 +615,14 @@ module_param(power_mgt, int, 0444); ...@@ -615,14 +615,14 @@ module_param(power_mgt, int, 0444);
MODULE_PARM_DESC(power_mgt, "Power Management"); MODULE_PARM_DESC(power_mgt, "Power Management");
/* /*
* tpm_st33_i2c_probe initialize the TPM device * tpm_stm_i2c_probe initialize the TPM device
* @param: client, the i2c_client drescription (TPM I2C description). * @param: client, the i2c_client drescription (TPM I2C description).
* @param: id, the i2c_device_id struct. * @param: id, the i2c_device_id struct.
* @return: 0 in case of success. * @return: 0 in case of success.
* -1 in other case. * -1 in other case.
*/ */
static int static int
tpm_st33_i2c_probe(struct i2c_client *client, const struct i2c_device_id *id) tpm_stm_i2c_probe(struct i2c_client *client, const struct i2c_device_id *id)
{ {
int ret; int ret;
u8 intmask; u8 intmask;
...@@ -747,12 +747,12 @@ tpm_st33_i2c_probe(struct i2c_client *client, const struct i2c_device_id *id) ...@@ -747,12 +747,12 @@ tpm_st33_i2c_probe(struct i2c_client *client, const struct i2c_device_id *id)
} }
/* /*
* tpm_st33_i2c_remove remove the TPM device * tpm_stm_i2c_remove remove the TPM device
* @param: client, the i2c_client drescription (TPM I2C description). * @param: client, the i2c_client drescription (TPM I2C description).
clear_bit(0, &chip->is_open); clear_bit(0, &chip->is_open);
* @return: 0 in case of success. * @return: 0 in case of success.
*/ */
static int tpm_st33_i2c_remove(struct i2c_client *client) static int tpm_stm_i2c_remove(struct i2c_client *client)
{ {
struct tpm_chip *chip = struct tpm_chip *chip =
(struct tpm_chip *) i2c_get_clientdata(client); (struct tpm_chip *) i2c_get_clientdata(client);
...@@ -765,12 +765,12 @@ static int tpm_st33_i2c_remove(struct i2c_client *client) ...@@ -765,12 +765,12 @@ static int tpm_st33_i2c_remove(struct i2c_client *client)
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
/* /*
* tpm_st33_i2c_pm_suspend suspend the TPM device * tpm_stm_i2c_pm_suspend suspend the TPM device
* @param: client, the i2c_client drescription (TPM I2C description). * @param: client, the i2c_client drescription (TPM I2C description).
* @param: mesg, the power management message. * @param: mesg, the power management message.
* @return: 0 in case of success. * @return: 0 in case of success.
*/ */
static int tpm_st33_i2c_pm_suspend(struct device *dev) static int tpm_stm_i2c_pm_suspend(struct device *dev)
{ {
struct st33zp24_platform_data *pin_infos = dev->platform_data; struct st33zp24_platform_data *pin_infos = dev->platform_data;
int ret = 0; int ret = 0;
...@@ -780,14 +780,14 @@ static int tpm_st33_i2c_pm_suspend(struct device *dev) ...@@ -780,14 +780,14 @@ static int tpm_st33_i2c_pm_suspend(struct device *dev)
else else
ret = tpm_pm_suspend(dev); ret = tpm_pm_suspend(dev);
return ret; return ret;
} /* tpm_st33_i2c_suspend() */ } /* tpm_stm_i2c_suspend() */
/* /*
* tpm_st33_i2c_pm_resume resume the TPM device * tpm_stm_i2c_pm_resume resume the TPM device
* @param: client, the i2c_client drescription (TPM I2C description). * @param: client, the i2c_client drescription (TPM I2C description).
* @return: 0 in case of success. * @return: 0 in case of success.
*/ */
static int tpm_st33_i2c_pm_resume(struct device *dev) static int tpm_stm_i2c_pm_resume(struct device *dev)
{ {
struct tpm_chip *chip = dev_get_drvdata(dev); struct tpm_chip *chip = dev_get_drvdata(dev);
struct st33zp24_platform_data *pin_infos = dev->platform_data; struct st33zp24_platform_data *pin_infos = dev->platform_data;
...@@ -806,28 +806,28 @@ static int tpm_st33_i2c_pm_resume(struct device *dev) ...@@ -806,28 +806,28 @@ static int tpm_st33_i2c_pm_resume(struct device *dev)
tpm_do_selftest(chip); tpm_do_selftest(chip);
} }
return ret; return ret;
} /* tpm_st33_i2c_pm_resume() */ } /* tpm_stm_i2c_pm_resume() */
#endif #endif
static const struct i2c_device_id tpm_st33_i2c_id[] = { static const struct i2c_device_id tpm_stm_i2c_id[] = {
{TPM_ST33_I2C, 0}, {TPM_ST33_I2C, 0},
{} {}
}; };
MODULE_DEVICE_TABLE(i2c, tpm_st33_i2c_id); MODULE_DEVICE_TABLE(i2c, tpm_stm_i2c_id);
static SIMPLE_DEV_PM_OPS(tpm_st33_i2c_ops, tpm_st33_i2c_pm_suspend, static SIMPLE_DEV_PM_OPS(tpm_stm_i2c_ops, tpm_stm_i2c_pm_suspend,
tpm_st33_i2c_pm_resume); tpm_stm_i2c_pm_resume);
static struct i2c_driver tpm_st33_i2c_driver = { static struct i2c_driver tpm_stm_i2c_driver = {
.driver = { .driver = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.name = TPM_ST33_I2C, .name = TPM_ST33_I2C,
.pm = &tpm_st33_i2c_ops, .pm = &tpm_stm_i2c_ops,
}, },
.probe = tpm_st33_i2c_probe, .probe = tpm_stm_i2c_probe,
.remove = tpm_st33_i2c_remove, .remove = tpm_stm_i2c_remove,
.id_table = tpm_st33_i2c_id .id_table = tpm_stm_i2c_id
}; };
module_i2c_driver(tpm_st33_i2c_driver); module_i2c_driver(tpm_stm_i2c_driver);
MODULE_AUTHOR("Christophe Ricard (tpmsupport@st.com)"); MODULE_AUTHOR("Christophe Ricard (tpmsupport@st.com)");
MODULE_DESCRIPTION("STM TPM I2C ST33 Driver"); MODULE_DESCRIPTION("STM TPM I2C ST33 Driver");
......
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