summaryrefslogtreecommitdiff
path: root/drivers/pnp/core.c
diff options
context:
space:
mode:
authorHeiner Kallweit <hkallweit1@gmail.com>2021-05-12 23:36:12 +0300
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2021-05-17 17:54:01 +0300
commitb15fc7c2c88e7a97fa347446301c37272de20ed5 (patch)
tree5943f74ca5f61ee49c2734622beb3d06c10a4289 /drivers/pnp/core.c
parentdaadabfbd36d57a158623fa81585a4e9aa954c53 (diff)
downloadlinux-b15fc7c2c88e7a97fa347446301c37272de20ed5.tar.xz
PNP: Remove pnp_alloc()
The kernel will complain anyway if it runs out of memory, so it is not necessary to print an extra error message when that happens and kzalloc() can be called directly instead of pnp_alloc() which then becomes redundant and can be dropped. Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com> [ rjw: Subject and changelog edits ] Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/pnp/core.c')
-rw-r--r--drivers/pnp/core.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/pnp/core.c b/drivers/pnp/core.c
index a50ab002e9e4..ccdfbf3978c0 100644
--- a/drivers/pnp/core.c
+++ b/drivers/pnp/core.c
@@ -31,18 +31,6 @@ DEFINE_MUTEX(pnp_lock);
int pnp_platform_devices;
EXPORT_SYMBOL(pnp_platform_devices);
-void *pnp_alloc(long size)
-{
- void *result;
-
- result = kzalloc(size, GFP_KERNEL);
- if (!result) {
- printk(KERN_ERR "pnp: Out of Memory\n");
- return NULL;
- }
- return result;
-}
-
static void pnp_remove_protocol(struct pnp_protocol *protocol)
{
mutex_lock(&pnp_lock);