summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Elfring <elfring@users.sourceforge.net>2015-12-29 21:11:45 +0100
committerUlf Hansson <ulf.hansson@linaro.org>2016-02-29 11:02:45 +0100
commitc48c5d580e2aa6c22759836759b3c01e4ee9e8c0 (patch)
tree6c14efd46f654c22814acf7ffc89412bb02f2122
parentfc77dbd34c5c99bce46d40a2491937c3bcbd10af (diff)
downloadop-kernel-dev-c48c5d580e2aa6c22759836759b3c01e4ee9e8c0.zip
op-kernel-dev-c48c5d580e2aa6c22759836759b3c01e4ee9e8c0.tar.gz
mmc: sdricoh_cs: Delete unnecessary variable initialisations
These variables will eventually be set to an appropriate value a bit later. * host * iobase * result Thus let us omit the explicit initialisation at the beginning. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
-rw-r--r--drivers/mmc/host/sdricoh_cs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mmc/host/sdricoh_cs.c b/drivers/mmc/host/sdricoh_cs.c
index b7e3057..5e57d9f 100644
--- a/drivers/mmc/host/sdricoh_cs.c
+++ b/drivers/mmc/host/sdricoh_cs.c
@@ -398,10 +398,10 @@ static struct mmc_host_ops sdricoh_ops = {
static int sdricoh_init_mmc(struct pci_dev *pci_dev,
struct pcmcia_device *pcmcia_dev)
{
- int result = 0;
- void __iomem *iobase = NULL;
+ int result;
+ void __iomem *iobase;
struct mmc_host *mmc = NULL;
- struct sdricoh_host *host = NULL;
+ struct sdricoh_host *host;
struct device *dev = &pcmcia_dev->dev;
/* map iomem */
if (pci_resource_len(pci_dev, SDRICOH_PCI_REGION) !=
OpenPOWER on IntegriCloud