diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2017-08-30 02:10:38 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2017-09-23 08:20:01 -0400 |
commit | d303b7c5b2660d93ba0dd2bf99b7dfa7bb93de73 (patch) | |
tree | de0848d65d6af31153204c49df050b09721b22a2 /drivers/media/pci/mantis/hopper_cards.c | |
parent | c38e8657a471e9af42b86009e5d3085031b41fda (diff) | |
download | linux-stable-d303b7c5b2660d93ba0dd2bf99b7dfa7bb93de73.tar.gz linux-stable-d303b7c5b2660d93ba0dd2bf99b7dfa7bb93de73.tar.bz2 linux-stable-d303b7c5b2660d93ba0dd2bf99b7dfa7bb93de73.zip |
media: drivers: delete unnecessary variable initialisations
The variables will be set to an appropriate value before usage.
Thus omit the explicit initialisation at the beginning.
[mchehab@s-opensource.com: fold similar patches into one]
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Hans Verkuil <hansverk@cisco.com>
Diffstat (limited to 'drivers/media/pci/mantis/hopper_cards.c')
-rw-r--r-- | drivers/media/pci/mantis/hopper_cards.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/mantis/hopper_cards.c b/drivers/media/pci/mantis/hopper_cards.c index 0c91df34ec67..a96ac0144fd2 100644 --- a/drivers/media/pci/mantis/hopper_cards.c +++ b/drivers/media/pci/mantis/hopper_cards.c @@ -161,7 +161,7 @@ static int hopper_pci_probe(struct pci_dev *pdev, struct mantis_pci_drvdata *drvdata; struct mantis_pci *mantis; struct mantis_hwconfig *config; - int err = 0; + int err; mantis = kzalloc(sizeof(struct mantis_pci), GFP_KERNEL); if (mantis == NULL) { |