mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-05 01:38:24 +07:00
mfd: ezx-pcap: Repair coding style errors picked up with checkpatch
This is part of an effort to clean-up the MFD subsystem. WARNING: sizeof t should be sizeof(t) + memset(&t, 0, sizeof t); WARNING: void function return statements are not generally useful + return; +} total: 0 errors, 2 warnings, 542 lines checked Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
parent
c06f308aa3
commit
0309528aae
@ -62,7 +62,7 @@ static int ezx_pcap_putget(struct pcap_chip *pcap, u32 *data)
|
|||||||
struct spi_message m;
|
struct spi_message m;
|
||||||
int status;
|
int status;
|
||||||
|
|
||||||
memset(&t, 0, sizeof t);
|
memset(&t, 0, sizeof(t));
|
||||||
spi_message_init(&m);
|
spi_message_init(&m);
|
||||||
t.len = sizeof(u32);
|
t.len = sizeof(u32);
|
||||||
spi_message_add_tail(&t, &m);
|
spi_message_add_tail(&t, &m);
|
||||||
@ -211,7 +211,6 @@ static void pcap_irq_handler(unsigned int irq, struct irq_desc *desc)
|
|||||||
|
|
||||||
desc->irq_data.chip->irq_ack(&desc->irq_data);
|
desc->irq_data.chip->irq_ack(&desc->irq_data);
|
||||||
queue_work(pcap->workqueue, &pcap->isr_work);
|
queue_work(pcap->workqueue, &pcap->isr_work);
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ADC */
|
/* ADC */
|
||||||
|
Loading…
Reference in New Issue
Block a user