mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
w1: Drop allocation error message
Drop the custom error message because kzalloc() already prints allocation failures. Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com> Link: https://lore.kernel.org/r/20240527134946.338398-2-thorsten.blum@toblux.com Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
This commit is contained in:
parent
56813b244e
commit
26bf5fc860
@ -32,12 +32,8 @@ static struct w1_master *w1_alloc_dev(u32 id, int slave_count, int slave_ttl,
|
||||
* We are in process context(kernel thread), so can sleep.
|
||||
*/
|
||||
dev = kzalloc(sizeof(struct w1_master) + sizeof(struct w1_bus_master), GFP_KERNEL);
|
||||
if (!dev) {
|
||||
pr_err("Failed to allocate %zd bytes for new w1 device.\n",
|
||||
sizeof(struct w1_master));
|
||||
if (!dev)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
dev->bus_master = (struct w1_bus_master *)(dev + 1);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user