Input: return -ENOMEM in select drivers when memory allocation fails
Instead of using -1 let's start using proper error codes. Signed-off-by: Davidlohr Bueso <dave@gnu.org> Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
This commit is contained in:
committed by
Dmitry Torokhov
parent
7aed3fb73f
commit
6792cbbb25
@@ -280,7 +280,7 @@ static int powermate_alloc_buffers(struct usb_device *udev, struct powermate_dev
|
|||||||
|
|
||||||
pm->configcr = kmalloc(sizeof(*(pm->configcr)), GFP_KERNEL);
|
pm->configcr = kmalloc(sizeof(*(pm->configcr)), GFP_KERNEL);
|
||||||
if (!pm->configcr)
|
if (!pm->configcr)
|
||||||
return -1;
|
return -ENOMEM;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@@ -699,7 +699,7 @@ int elantech_init(struct psmouse *psmouse)
|
|||||||
|
|
||||||
psmouse->private = etd = kzalloc(sizeof(struct elantech_data), GFP_KERNEL);
|
psmouse->private = etd = kzalloc(sizeof(struct elantech_data), GFP_KERNEL);
|
||||||
if (!etd)
|
if (!etd)
|
||||||
return -1;
|
return -ENOMEM;
|
||||||
|
|
||||||
etd->parity[0] = 1;
|
etd->parity[0] = 1;
|
||||||
for (i = 1; i < 256; i++)
|
for (i = 1; i < 256; i++)
|
||||||
|
@@ -731,7 +731,7 @@ int synaptics_init(struct psmouse *psmouse)
|
|||||||
|
|
||||||
psmouse->private = priv = kzalloc(sizeof(struct synaptics_data), GFP_KERNEL);
|
psmouse->private = priv = kzalloc(sizeof(struct synaptics_data), GFP_KERNEL);
|
||||||
if (!priv)
|
if (!priv)
|
||||||
return -1;
|
return -ENOMEM;
|
||||||
|
|
||||||
psmouse_reset(psmouse);
|
psmouse_reset(psmouse);
|
||||||
|
|
||||||
|
@@ -303,7 +303,7 @@ int trackpoint_detect(struct psmouse *psmouse, bool set_properties)
|
|||||||
|
|
||||||
psmouse->private = kzalloc(sizeof(struct trackpoint_data), GFP_KERNEL);
|
psmouse->private = kzalloc(sizeof(struct trackpoint_data), GFP_KERNEL);
|
||||||
if (!psmouse->private)
|
if (!psmouse->private)
|
||||||
return -1;
|
return -ENOMEM;
|
||||||
|
|
||||||
psmouse->vendor = "IBM";
|
psmouse->vendor = "IBM";
|
||||||
psmouse->name = "TrackPoint";
|
psmouse->name = "TrackPoint";
|
||||||
|
Reference in New Issue
Block a user