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-bf533 | |
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-bf533')
-rw-r--r-- | arch/blackfin/mach-bf533/boards/blackstamp.c | 4 | ||||
-rw-r--r-- | arch/blackfin/mach-bf533/boards/cm_bf533.c | 4 | ||||
-rw-r--r-- | arch/blackfin/mach-bf533/boards/stamp.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/arch/blackfin/mach-bf533/boards/blackstamp.c b/arch/blackfin/mach-bf533/boards/blackstamp.c index 992f551f06a1..44241cf470b1 100644 --- a/arch/blackfin/mach-bf533/boards/blackstamp.c +++ b/arch/blackfin/mach-bf533/boards/blackstamp.c | |||
@@ -291,7 +291,7 @@ static struct resource bfin_sport0_uart_resources[] = { | |||
291 | 291 | ||
292 | unsigned short bfin_sport0_peripherals[] = { | 292 | unsigned short bfin_sport0_peripherals[] = { |
293 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, | 293 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, |
294 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0 | 294 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, 0 |
295 | }; | 295 | }; |
296 | 296 | ||
297 | static struct platform_device bfin_sport0_uart_device = { | 297 | static struct platform_device bfin_sport0_uart_device = { |
@@ -325,7 +325,7 @@ static struct resource bfin_sport1_uart_resources[] = { | |||
325 | 325 | ||
326 | unsigned short bfin_sport1_peripherals[] = { | 326 | unsigned short bfin_sport1_peripherals[] = { |
327 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, | 327 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, |
328 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0 | 328 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, 0 |
329 | }; | 329 | }; |
330 | 330 | ||
331 | static struct platform_device bfin_sport1_uart_device = { | 331 | static struct platform_device bfin_sport1_uart_device = { |
diff --git a/arch/blackfin/mach-bf533/boards/cm_bf533.c b/arch/blackfin/mach-bf533/boards/cm_bf533.c index adbe62a81e25..34d0ef49ee9b 100644 --- a/arch/blackfin/mach-bf533/boards/cm_bf533.c +++ b/arch/blackfin/mach-bf533/boards/cm_bf533.c | |||
@@ -338,7 +338,7 @@ static struct resource bfin_sport0_uart_resources[] = { | |||
338 | 338 | ||
339 | unsigned short bfin_sport0_peripherals[] = { | 339 | unsigned short bfin_sport0_peripherals[] = { |
340 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, | 340 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, |
341 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0 | 341 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, 0 |
342 | }; | 342 | }; |
343 | 343 | ||
344 | static struct platform_device bfin_sport0_uart_device = { | 344 | static struct platform_device bfin_sport0_uart_device = { |
@@ -372,7 +372,7 @@ static struct resource bfin_sport1_uart_resources[] = { | |||
372 | 372 | ||
373 | unsigned short bfin_sport1_peripherals[] = { | 373 | unsigned short bfin_sport1_peripherals[] = { |
374 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, | 374 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, |
375 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0 | 375 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, 0 |
376 | }; | 376 | }; |
377 | 377 | ||
378 | static struct platform_device bfin_sport1_uart_device = { | 378 | static struct platform_device bfin_sport1_uart_device = { |
diff --git a/arch/blackfin/mach-bf533/boards/stamp.c b/arch/blackfin/mach-bf533/boards/stamp.c index 4b73d4295f82..b44c6c25fded 100644 --- a/arch/blackfin/mach-bf533/boards/stamp.c +++ b/arch/blackfin/mach-bf533/boards/stamp.c | |||
@@ -420,7 +420,7 @@ static struct resource bfin_sport0_uart_resources[] = { | |||
420 | 420 | ||
421 | unsigned short bfin_sport0_peripherals[] = { | 421 | unsigned short bfin_sport0_peripherals[] = { |
422 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, | 422 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, |
423 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0 | 423 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, 0 |
424 | }; | 424 | }; |
425 | 425 | ||
426 | static struct platform_device bfin_sport0_uart_device = { | 426 | static struct platform_device bfin_sport0_uart_device = { |
@@ -454,7 +454,7 @@ static struct resource bfin_sport1_uart_resources[] = { | |||
454 | 454 | ||
455 | unsigned short bfin_sport1_peripherals[] = { | 455 | unsigned short bfin_sport1_peripherals[] = { |
456 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, | 456 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, |
457 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0 | 457 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, 0 |
458 | }; | 458 | }; |
459 | 459 | ||
460 | static struct platform_device bfin_sport1_uart_device = { | 460 | static struct platform_device bfin_sport1_uart_device = { |