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

Commit a1e3cf41 authored by Haavard Skinnemoen's avatar Haavard Skinnemoen Committed by Linus Torvalds
Browse files

atmel_spi: remove unnecessary (and wrong) #ifdefs



Now that the cpu_is_xxx() macros are available both on AVR32 and AT91, we can
remove a couple of #ifdefs from this driver.  One of them is actually wrong --
new_1 should be set on AVR32 but isn't.  This causes the bus clock to run at
twice the speed it is configured to.

Signed-off-by: default avatarHaavard Skinnemoen <hskinnemoen@atmel.com>
Cc: David Brownell <david-b@pacbell.net>
Acked-by: default avatarAndrew Victor <andrew@sanpeople.com>
Cc: Nicolas Ferre <nicolas.ferre@rfo.atmel.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e7498281
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -22,10 +22,7 @@
#include <asm/io.h>
#include <asm/arch/board.h>
#include <asm/arch/gpio.h>

#ifdef CONFIG_ARCH_AT91
#include <asm/arch/cpu.h>
#endif

#include "atmel_spi.h"

@@ -552,10 +549,8 @@ static int __init atmel_spi_probe(struct platform_device *pdev)
		goto out_free_buffer;
	as->irq = irq;
	as->clk = clk;
#ifdef CONFIG_ARCH_AT91
	if (!cpu_is_at91rm9200())
		as->new_1 = 1;
#endif

	ret = request_irq(irq, atmel_spi_interrupt, 0,
			pdev->dev.bus_id, master);