mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
tpm: st33zp24: remove pointless checks on probe
Remove tests for SPI device or I2C client to be non-NULL because driver core will never call driver's probe method without having a valid device structure. Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com> Reviewed-by: Jarkko Sakkinen <jarkko@kernel.org> Signed-off-by: Jarkko Sakkinen <jarkko@kernel.org>
This commit is contained in:
parent
f526406807
commit
eaabc245b0
@ -106,12 +106,6 @@ static int st33zp24_i2c_probe(struct i2c_client *client,
|
||||
{
|
||||
struct st33zp24_i2c_phy *phy;
|
||||
|
||||
if (!client) {
|
||||
pr_info("%s: i2c client is NULL. Device not accessible.\n",
|
||||
__func__);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
|
||||
dev_info(&client->dev, "client not i2c capable\n");
|
||||
return -ENODEV;
|
||||
|
@ -223,13 +223,6 @@ static int st33zp24_spi_probe(struct spi_device *dev)
|
||||
{
|
||||
struct st33zp24_spi_phy *phy;
|
||||
|
||||
/* Check SPI platform functionnalities */
|
||||
if (!dev) {
|
||||
pr_info("%s: dev is NULL. Device is not accessible.\n",
|
||||
__func__);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
phy = devm_kzalloc(&dev->dev, sizeof(struct st33zp24_spi_phy),
|
||||
GFP_KERNEL);
|
||||
if (!phy)
|
||||
|
Loading…
Reference in New Issue
Block a user