diff options
author | Sonic Zhang <sonic.zhang@analog.com> | 2010-11-11 21:45:38 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-01-10 07:18:20 -0500 |
commit | e54b673081d12c46b47fdfe1772656cb2b43721d (patch) | |
tree | 5552e2c975a5e7e6cd1a4803d9f4b4853e6b7997 /arch/blackfin/mach-bf527 | |
parent | e01b5b129661ee1eaddd4f2a0d8df6cb170339a5 (diff) |
Blackfin: sport_uart resources: remove unused secondary RX/TX pins
The SPORT/UART driver doesn't use the secondary channel pins, so don't
try and request them thus keeping other drivers from using them.
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/mach-bf527')
-rw-r--r-- | arch/blackfin/mach-bf527/boards/ad7160eval.c | 4 | ||||
-rw-r--r-- | arch/blackfin/mach-bf527/boards/cm_bf527.c | 4 | ||||
-rw-r--r-- | arch/blackfin/mach-bf527/boards/ezbrd.c | 4 | ||||
-rw-r--r-- | arch/blackfin/mach-bf527/boards/ezkit.c | 4 | ||||
-rw-r--r-- | arch/blackfin/mach-bf527/boards/tll6527m.c | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/arch/blackfin/mach-bf527/boards/ad7160eval.c b/arch/blackfin/mach-bf527/boards/ad7160eval.c index 6215de838b00..43dbaa00ba43 100644 --- a/arch/blackfin/mach-bf527/boards/ad7160eval.c +++ b/arch/blackfin/mach-bf527/boards/ad7160eval.c | |||
@@ -630,7 +630,7 @@ static struct resource bfin_sport0_uart_resources[] = { | |||
630 | 630 | ||
631 | unsigned short bfin_sport0_peripherals[] = { | 631 | unsigned short bfin_sport0_peripherals[] = { |
632 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, | 632 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, |
633 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0 | 633 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, 0 |
634 | }; | 634 | }; |
635 | 635 | ||
636 | static struct platform_device bfin_sport0_uart_device = { | 636 | static struct platform_device bfin_sport0_uart_device = { |
@@ -664,7 +664,7 @@ static struct resource bfin_sport1_uart_resources[] = { | |||
664 | 664 | ||
665 | unsigned short bfin_sport1_peripherals[] = { | 665 | unsigned short bfin_sport1_peripherals[] = { |
666 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, | 666 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, |
667 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0 | 667 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, 0 |
668 | }; | 668 | }; |
669 | 669 | ||
670 | static struct platform_device bfin_sport1_uart_device = { | 670 | static struct platform_device bfin_sport1_uart_device = { |
diff --git a/arch/blackfin/mach-bf527/boards/cm_bf527.c b/arch/blackfin/mach-bf527/boards/cm_bf527.c index 1c5aed443bca..17313ee27aad 100644 --- a/arch/blackfin/mach-bf527/boards/cm_bf527.c +++ b/arch/blackfin/mach-bf527/boards/cm_bf527.c | |||
@@ -804,7 +804,7 @@ static struct resource bfin_sport0_uart_resources[] = { | |||
804 | 804 | ||
805 | unsigned short bfin_sport0_peripherals[] = { | 805 | unsigned short bfin_sport0_peripherals[] = { |
806 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, | 806 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, |
807 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0 | 807 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, 0 |
808 | }; | 808 | }; |
809 | 809 | ||
810 | static struct platform_device bfin_sport0_uart_device = { | 810 | static struct platform_device bfin_sport0_uart_device = { |
@@ -838,7 +838,7 @@ static struct resource bfin_sport1_uart_resources[] = { | |||
838 | 838 | ||
839 | unsigned short bfin_sport1_peripherals[] = { | 839 | unsigned short bfin_sport1_peripherals[] = { |
840 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, | 840 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, |
841 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0 | 841 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, 0 |
842 | }; | 842 | }; |
843 | 843 | ||
844 | static struct platform_device bfin_sport1_uart_device = { | 844 | static struct platform_device bfin_sport1_uart_device = { |
diff --git a/arch/blackfin/mach-bf527/boards/ezbrd.c b/arch/blackfin/mach-bf527/boards/ezbrd.c index a24a409e2c94..57f9b5e13f52 100644 --- a/arch/blackfin/mach-bf527/boards/ezbrd.c +++ b/arch/blackfin/mach-bf527/boards/ezbrd.c | |||
@@ -684,7 +684,7 @@ static struct resource bfin_sport0_uart_resources[] = { | |||
684 | 684 | ||
685 | unsigned short bfin_sport0_peripherals[] = { | 685 | unsigned short bfin_sport0_peripherals[] = { |
686 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, | 686 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, |
687 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0 | 687 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, 0 |
688 | }; | 688 | }; |
689 | 689 | ||
690 | static struct platform_device bfin_sport0_uart_device = { | 690 | static struct platform_device bfin_sport0_uart_device = { |
@@ -718,7 +718,7 @@ static struct resource bfin_sport1_uart_resources[] = { | |||
718 | 718 | ||
719 | unsigned short bfin_sport1_peripherals[] = { | 719 | unsigned short bfin_sport1_peripherals[] = { |
720 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, | 720 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, |
721 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0 | 721 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, 0 |
722 | }; | 722 | }; |
723 | 723 | ||
724 | static struct platform_device bfin_sport1_uart_device = { | 724 | static struct platform_device bfin_sport1_uart_device = { |
diff --git a/arch/blackfin/mach-bf527/boards/ezkit.c b/arch/blackfin/mach-bf527/boards/ezkit.c index 34b5e1c6c122..bf5cebfb4838 100644 --- a/arch/blackfin/mach-bf527/boards/ezkit.c +++ b/arch/blackfin/mach-bf527/boards/ezkit.c | |||
@@ -992,7 +992,7 @@ static struct resource bfin_sport0_uart_resources[] = { | |||
992 | 992 | ||
993 | unsigned short bfin_sport0_peripherals[] = { | 993 | unsigned short bfin_sport0_peripherals[] = { |
994 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, | 994 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, |
995 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0 | 995 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, 0 |
996 | }; | 996 | }; |
997 | 997 | ||
998 | static struct platform_device bfin_sport0_uart_device = { | 998 | static struct platform_device bfin_sport0_uart_device = { |
@@ -1026,7 +1026,7 @@ static struct resource bfin_sport1_uart_resources[] = { | |||
1026 | 1026 | ||
1027 | unsigned short bfin_sport1_peripherals[] = { | 1027 | unsigned short bfin_sport1_peripherals[] = { |
1028 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, | 1028 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, |
1029 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0 | 1029 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, 0 |
1030 | }; | 1030 | }; |
1031 | 1031 | ||
1032 | static struct platform_device bfin_sport1_uart_device = { | 1032 | static struct platform_device bfin_sport1_uart_device = { |
diff --git a/arch/blackfin/mach-bf527/boards/tll6527m.c b/arch/blackfin/mach-bf527/boards/tll6527m.c index b6094610b5e0..d542e803213b 100644 --- a/arch/blackfin/mach-bf527/boards/tll6527m.c +++ b/arch/blackfin/mach-bf527/boards/tll6527m.c | |||
@@ -801,7 +801,7 @@ static struct resource bfin_sport0_uart_resources[] = { | |||
801 | 801 | ||
802 | unsigned short bfin_sport0_peripherals[] = { | 802 | unsigned short bfin_sport0_peripherals[] = { |
803 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, | 803 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, |
804 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0 | 804 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, 0 |
805 | }; | 805 | }; |
806 | 806 | ||
807 | static struct platform_device bfin_sport0_uart_device = { | 807 | static struct platform_device bfin_sport0_uart_device = { |
@@ -836,7 +836,7 @@ static struct resource bfin_sport1_uart_resources[] = { | |||
836 | 836 | ||
837 | unsigned short bfin_sport1_peripherals[] = { | 837 | unsigned short bfin_sport1_peripherals[] = { |
838 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, | 838 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, |
839 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0 | 839 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, 0 |
840 | }; | 840 | }; |
841 | 841 | ||
842 | static struct platform_device bfin_sport1_uart_device = { | 842 | static struct platform_device bfin_sport1_uart_device = { |