diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2018-02-07 14:47:50 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-03-14 12:54:09 -0400 |
commit | 520656c03c545011d1da702a261e2c782808b79f (patch) | |
tree | a05ad32d6fd22352167b9f9c96f0c076f344034f /drivers/parport | |
parent | 5e50654da591efecb02fd9dab032152e4c5d0ca2 (diff) |
parport: ax88796: Delete an unnecessary variable initialisation in parport_ax88796_probe()
The local variable "pp" will eventually be set to an appropriate pointer
a bit later. Thus omit the explicit initialisation at the beginning.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/parport')
-rw-r--r-- | drivers/parport/parport_ax88796.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parport/parport_ax88796.c b/drivers/parport/parport_ax88796.c index 09788d8cf467..bfe97c2a8d4c 100644 --- a/drivers/parport/parport_ax88796.c +++ b/drivers/parport/parport_ax88796.c | |||
@@ -273,7 +273,7 @@ static int parport_ax88796_probe(struct platform_device *pdev) | |||
273 | { | 273 | { |
274 | struct device *_dev = &pdev->dev; | 274 | struct device *_dev = &pdev->dev; |
275 | struct ax_drvdata *dd; | 275 | struct ax_drvdata *dd; |
276 | struct parport *pp = NULL; | 276 | struct parport *pp; |
277 | struct resource *res; | 277 | struct resource *res; |
278 | unsigned long size; | 278 | unsigned long size; |
279 | int spacing; | 279 | int spacing; |