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

Commit 34db70b9 authored by Stanislaw Gruszka's avatar Stanislaw Gruszka Committed by Kalle Valo
Browse files

rt2x00: add copy of clk for soc devices



Since clk_get() is not trivial add copy of clk pointer to rt2x00dev
for System On Chip devices and initialize it on probe routine.

Signed-off-by: default avatarStanislaw Gruszka <sgruszka@redhat.com>
Acked-by: default avatarDaniel Golle <daniel@makrotopia.org>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent b3d75a81
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -39,6 +39,7 @@
#include <linux/hrtimer.h>
#include <linux/average.h>
#include <linux/usb.h>
#include <linux/clk.h>

#include <net/mac80211.h>

@@ -1011,6 +1012,9 @@ struct rt2x00_dev {
	unsigned int extra_tx_headroom;

	struct usb_anchor *anchor;

	/* Clock for System On Chip devices. */
	struct clk *clk;
};

struct rt2x00_bar_list_entry {
+1 −0
Original line number Diff line number Diff line
@@ -92,6 +92,7 @@ int rt2x00soc_probe(struct platform_device *pdev, const struct rt2x00_ops *ops)
	rt2x00dev->hw = hw;
	rt2x00dev->irq = platform_get_irq(pdev, 0);
	rt2x00dev->name = pdev->dev.driver->name;
	rt2x00dev->clk = clk_get(&pdev->dev);

	rt2x00_set_chip_intf(rt2x00dev, RT2X00_CHIP_INTF_SOC);