From 9c0de24bff9429c3469d8db22942faa7f694d6e6 Mon Sep 17 00:00:00 2001 From: Matvejchikov Ilya Date: Tue, 12 Jul 2011 21:46:57 +0000 Subject: [PATCH] slip: remove redundant check slip_devs for NULL As slip_devs is initialized on module load stage there is no reason to check it for NULL anywhere instead of the deinitialization routine because if we can't get enough memory on startup we don't run at all. Signed-off-by: Matvejchikov Ilya Signed-off-by: David S. Miller --- drivers/net/slip.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/net/slip.c b/drivers/net/slip.c index d724d47d254f1..6f97c5983c551 100644 --- a/drivers/net/slip.c +++ b/drivers/net/slip.c @@ -726,9 +726,6 @@ static struct slip *sl_alloc(dev_t line) struct net_device *dev = NULL; struct slip *sl; - if (slip_devs == NULL) - return NULL; /* Master array missing ! */ - for (i = 0; i < slip_maxdev; i++) { dev = slip_devs[i]; if (dev == NULL) -- 2.39.5