mirror of https://gitee.com/openkylin/linux.git
usb: typec: tcpci_maxim: Fix uninitialized return variable
New smatch warnings: drivers/usb/typec/tcpm/tcpci_maxim.c:324 max_tcpci_irq() error: uninitialized symbol 'irq_return'. drivers/usb/typec/tcpm/tcpci_maxim.c:407 max_tcpci_probe() warn: passing zero to 'PTR_ERR' The change fixes the above warnings by initializing irq_return and replacing IS_ERR_OR_NULL with IS_ERR. Reported-by: kernel test robot <lkp@intel.com> Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Badhri Jagan Sridharan <badhri@google.com> Link: https://lore.kernel.org/r/20201029063138.1429760-11-badhri@google.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
cccaee0e0a
commit
7695cae24b
|
@ -343,7 +343,7 @@ static irqreturn_t max_tcpci_irq(int irq, void *dev_id)
|
|||
{
|
||||
struct max_tcpci_chip *chip = dev_id;
|
||||
u16 status;
|
||||
irqreturn_t irq_return;
|
||||
irqreturn_t irq_return = IRQ_HANDLED;
|
||||
int ret;
|
||||
|
||||
if (!chip->port)
|
||||
|
@ -445,7 +445,7 @@ static int max_tcpci_probe(struct i2c_client *client, const struct i2c_device_id
|
|||
|
||||
max_tcpci_init_regs(chip);
|
||||
chip->tcpci = tcpci_register_port(chip->dev, &chip->data);
|
||||
if (IS_ERR_OR_NULL(chip->tcpci)) {
|
||||
if (IS_ERR(chip->tcpci)) {
|
||||
dev_err(&client->dev, "TCPCI port registration failed");
|
||||
ret = PTR_ERR(chip->tcpci);
|
||||
return PTR_ERR(chip->tcpci);
|
||||
|
|
Loading…
Reference in New Issue