From: Krzysztof Kozlowski Date: Thu, 5 Mar 2026 21:45:46 +0000 (+0100) Subject: mfd: ezx-pcap: Drop memory allocation error message X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fa9ccb6b7fb4c5ac50613d1412a273a2031dcd2b;p=thirdparty%2Fkernel%2Flinux.git mfd: ezx-pcap: Drop memory allocation error message Drivers should not print error messages on memory allocation failures, because core already does it. Signed-off-by: Krzysztof Kozlowski Reviewed-by: Andy Shevchenko Link: https://patch.msgid.link/20260305-workqueue-devm-v2-7-66a38741c652@oss.qualcomm.com Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/ezx-pcap.c b/drivers/mfd/ezx-pcap.c index 24ca140d6a48..cd0520a08224 100644 --- a/drivers/mfd/ezx-pcap.c +++ b/drivers/mfd/ezx-pcap.c @@ -416,7 +416,6 @@ static int ezx_pcap_probe(struct spi_device *spi) pcap->workqueue = create_singlethread_workqueue("pcapd"); if (!pcap->workqueue) { ret = -ENOMEM; - dev_err(&spi->dev, "can't create pcap thread\n"); goto ret; }