Skip to content

Commit 00e98a9

Browse files
committed
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/blackfin-2.6
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/cooloney/blackfin-2.6: 8250 Serial Driver: revert extra IRQ flag definition patch Blackfin arch: update anomaly headers from toolchain trunk Blackfin arch: Remove bad and usless code Blackfin arch: Fix bug - set corret SSEL and IRQ to enable AD7877 on BF527 Blackfin arch: Fix typo. it should be _outsw_8 Blackfin arch: Cleanup no functional changes
2 parents f365ad5 + a4ed1e4 commit 00e98a9

File tree

16 files changed

+35
-400
lines changed

16 files changed

+35
-400
lines changed

arch/blackfin/kernel/gptimers.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
#include <linux/kernel.h>
1212
#include <linux/module.h>
13+
#include <linux/io.h>
1314

14-
#include <asm/io.h>
1515
#include <asm/blackfin.h>
1616
#include <asm/gptimers.h>
1717

arch/blackfin/lib/outs.S

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,4 @@ ENTRY(_outsw_8)
7676
R0 = R0 + R1;
7777
.Lword8_loop_e: W[P0] = R0;
7878
RTS;
79-
ENDPROC(_outsw)
79+
ENDPROC(_outsw_8)

arch/blackfin/mach-bf527/boards/ezkit.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -647,10 +647,10 @@ static struct spi_board_info bfin_spi_board_info[] __initdata = {
647647
{
648648
.modalias = "ad7877",
649649
.platform_data = &bfin_ad7877_ts_info,
650-
.irq = IRQ_PF6,
650+
.irq = IRQ_PF8,
651651
.max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
652652
.bus_num = 0,
653-
.chip_select = 1,
653+
.chip_select = 2,
654654
.controller_data = &spi_ad7877_chip_info,
655655
},
656656
#endif

arch/blackfin/mach-bf537/boards/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44

55
obj-$(CONFIG_GENERIC_BF537_BOARD) += generic_board.o
6-
obj-$(CONFIG_BFIN537_STAMP) += stamp.o led.o
6+
obj-$(CONFIG_BFIN537_STAMP) += stamp.o
77
obj-$(CONFIG_BFIN537_BLUETECHNIX_CM) += cm_bf537.o
88
obj-$(CONFIG_PNAV10) += pnav10.o
99
obj-$(CONFIG_CAMSIG_MINOTAUR) += minotaur.o

arch/blackfin/mach-bf537/boards/led.S

Lines changed: 0 additions & 183 deletions
This file was deleted.

arch/blackfin/mach-bf548/boards/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# arch/blackfin/mach-bf548/boards/Makefile
33
#
44

5-
obj-$(CONFIG_BFIN548_EZKIT) += ezkit.o led.o
5+
obj-$(CONFIG_BFIN548_EZKIT) += ezkit.o
66
obj-$(CONFIG_BFIN548_BLUETECHNIX_CM) += cm_bf548.o

arch/blackfin/mach-bf548/boards/cm_bf548.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ static struct platform_device *cm_bf548_devices[] __initdata = {
684684

685685
static int __init cm_bf548_init(void)
686686
{
687-
printk(KERN_INFO "%s(): registering device resources\n", __FUNCTION__);
687+
printk(KERN_INFO "%s(): registering device resources\n", __func__);
688688
platform_add_devices(cm_bf548_devices, ARRAY_SIZE(cm_bf548_devices));
689689

690690
#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)

0 commit comments

Comments
 (0)