Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d79b7575 authored by Olof Johansson's avatar Olof Johansson
Browse files

Merge tag 'tegra-for-3.15-drivers' of...

Merge tag 'tegra-for-3.15-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux into next/drivers

Merge "ARM: tegra: driver changes for 3.15" from Stephen Warren:

A single cleanup for the Tegra AHB driver.

* tag 'tegra-for-3.15-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux

:
  drivers/amba: don't check resource with devm_ioremap_resource

Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
parents a65b5f4c 3cb3316c
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -256,8 +256,6 @@ static int tegra_ahb_probe(struct platform_device *pdev)
		return -ENOMEM;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!res)
		return -ENODEV;
	ahb->regs = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(ahb->regs))
		return PTR_ERR(ahb->regs);