mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-24 01:09:38 -05:00
HSI: hsi_char: Delete an error message for a failed memory allocation in hsc_probe()
Omit an extra message for a memory allocation failure in this function. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
This commit is contained in:
parent
852041d1ce
commit
e3d7fbab06
1 changed files with 2 additions and 3 deletions
|
@ -697,10 +697,9 @@ static int hsc_probe(struct device *dev)
|
|||
int i;
|
||||
|
||||
cl_data = kzalloc(sizeof(*cl_data), GFP_KERNEL);
|
||||
if (!cl_data) {
|
||||
dev_err(dev, "Could not allocate hsc_client_data\n");
|
||||
if (!cl_data)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
hsc_baseminor = HSC_BASEMINOR(hsi_id(cl), hsi_port_id(cl));
|
||||
if (!hsc_major) {
|
||||
ret = alloc_chrdev_region(&hsc_dev, hsc_baseminor,
|
||||
|
|
Loading…
Add table
Reference in a new issue