Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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 <krzysztof.kozlowski@oss.qualcomm.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://patch.msgid.link/20260305-workqueue-devm-v2-7-66a38741c652@oss.qualcomm.com
Signed-off-by: Lee Jones <lee@kernel.org>

authored by

Krzysztof Kozlowski and committed by
Lee Jones
fa9ccb6b 44fb5d7b

-1
-1
drivers/mfd/ezx-pcap.c
··· 416 416 pcap->workqueue = create_singlethread_workqueue("pcapd"); 417 417 if (!pcap->workqueue) { 418 418 ret = -ENOMEM; 419 - dev_err(&spi->dev, "can't create pcap thread\n"); 420 419 goto ret; 421 420 } 422 421