mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 02:01:05 +07:00
spi/trace: drop useless and wrong (but harmless) casts
bus_num, chip_select and len are already ints, so there is no gain in casting them to int. xfer is a pointer to a struct spi_transfer. Casting that to struct spi_message * is wrong but as only the pointer value is used for the %p format specifier no harm is done. Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
560b097c77
commit
983f6ae944
@ -129,10 +129,9 @@ DECLARE_EVENT_CLASS(spi_transfer,
|
|||||||
__entry->len = xfer->len;
|
__entry->len = xfer->len;
|
||||||
),
|
),
|
||||||
|
|
||||||
TP_printk("spi%d.%d %p len=%d", (int)__entry->bus_num,
|
TP_printk("spi%d.%d %p len=%d",
|
||||||
(int)__entry->chip_select,
|
__entry->bus_num, __entry->chip_select,
|
||||||
(struct spi_message *)__entry->xfer,
|
__entry->xfer, __entry->len)
|
||||||
(int)__entry->len)
|
|
||||||
);
|
);
|
||||||
|
|
||||||
DEFINE_EVENT(spi_transfer, spi_transfer_start,
|
DEFINE_EVENT(spi_transfer, spi_transfer_start,
|
||||||
|
Loading…
Reference in New Issue
Block a user