diff options
Diffstat (limited to 'drivers/serial/amba-pl011.c')
-rw-r--r-- | drivers/serial/amba-pl011.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/drivers/serial/amba-pl011.c b/drivers/serial/amba-pl011.c index d84476ee6592..129670556162 100644 --- a/drivers/serial/amba-pl011.c +++ b/drivers/serial/amba-pl011.c | |||
@@ -47,12 +47,12 @@ | |||
47 | #include <linux/tty_flip.h> | 47 | #include <linux/tty_flip.h> |
48 | #include <linux/serial_core.h> | 48 | #include <linux/serial_core.h> |
49 | #include <linux/serial.h> | 49 | #include <linux/serial.h> |
50 | #include <linux/amba/bus.h> | ||
51 | #include <linux/amba/serial.h> | ||
52 | #include <linux/clk.h> | ||
50 | 53 | ||
51 | #include <asm/io.h> | 54 | #include <asm/io.h> |
52 | #include <asm/sizes.h> | 55 | #include <asm/sizes.h> |
53 | #include <asm/hardware/amba.h> | ||
54 | #include <asm/hardware/clock.h> | ||
55 | #include <asm/hardware/amba_serial.h> | ||
56 | 56 | ||
57 | #define UART_NR 14 | 57 | #define UART_NR 14 |
58 | 58 | ||
@@ -761,10 +761,6 @@ static int pl011_probe(struct amba_device *dev, void *id) | |||
761 | goto unmap; | 761 | goto unmap; |
762 | } | 762 | } |
763 | 763 | ||
764 | ret = clk_use(uap->clk); | ||
765 | if (ret) | ||
766 | goto putclk; | ||
767 | |||
768 | uap->port.dev = &dev->dev; | 764 | uap->port.dev = &dev->dev; |
769 | uap->port.mapbase = dev->res.start; | 765 | uap->port.mapbase = dev->res.start; |
770 | uap->port.membase = base; | 766 | uap->port.membase = base; |
@@ -782,8 +778,6 @@ static int pl011_probe(struct amba_device *dev, void *id) | |||
782 | if (ret) { | 778 | if (ret) { |
783 | amba_set_drvdata(dev, NULL); | 779 | amba_set_drvdata(dev, NULL); |
784 | amba_ports[i] = NULL; | 780 | amba_ports[i] = NULL; |
785 | clk_unuse(uap->clk); | ||
786 | putclk: | ||
787 | clk_put(uap->clk); | 781 | clk_put(uap->clk); |
788 | unmap: | 782 | unmap: |
789 | iounmap(base); | 783 | iounmap(base); |
@@ -808,7 +802,6 @@ static int pl011_remove(struct amba_device *dev) | |||
808 | amba_ports[i] = NULL; | 802 | amba_ports[i] = NULL; |
809 | 803 | ||
810 | iounmap(uap->port.membase); | 804 | iounmap(uap->port.membase); |
811 | clk_unuse(uap->clk); | ||
812 | clk_put(uap->clk); | 805 | clk_put(uap->clk); |
813 | kfree(uap); | 806 | kfree(uap); |
814 | return 0; | 807 | return 0; |