Skip to content

Commit

Permalink
mcb: Delete num_cells variable which is not required
Browse files Browse the repository at this point in the history
The num_cells variable is only used in the dev_dbg print,
but we can directly use the ret variable which also includes the same
value.

Signed-off-by: Andreas Werner <[email protected]>
Signed-off-by: Johannes Thumshirn <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
Andreas Werner authored and gregkh committed May 3, 2016
1 parent f75564d commit 8cd1f9d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions drivers/mcb/mcb-pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ static int mcb_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
struct resource *res;
struct priv *priv;
int ret;
int num_cells;
unsigned long flags;

priv = devm_kzalloc(&pdev->dev, sizeof(struct priv), GFP_KERNEL);
Expand Down Expand Up @@ -92,9 +91,8 @@ static int mcb_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
ret = chameleon_parse_cells(priv->bus, priv->mapbase, priv->base);
if (ret < 0)
goto out_mcb_bus;
num_cells = ret;

dev_dbg(&pdev->dev, "Found %d cells\n", num_cells);
dev_dbg(&pdev->dev, "Found %d cells\n", ret);

mcb_bus_add_devices(priv->bus);

Expand Down

0 comments on commit 8cd1f9d

Please sign in to comment.