Skip to content

Commit

Permalink
sh: update smc91x platform data for se7206.
Browse files Browse the repository at this point in the history
Follows the se7722 change.

Signed-off-by: Paul Mundt <[email protected]>
  • Loading branch information
pmundt committed May 9, 2008
1 parent 1e0f50a commit f11c9c2
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions arch/sh/boards/se/7206/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,23 @@
* linux/arch/sh/boards/se/7206/setup.c
*
* Copyright (C) 2006 Yoshinori Sato
* Copyright (C) 2007 Paul Mundt
* Copyright (C) 2007 - 2008 Paul Mundt
*
* Hitachi 7206 SolutionEngine Support.
*/
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/smc91x.h>
#include <asm/se7206.h>
#include <asm/io.h>
#include <asm/machvec.h>
#include <asm/heartbeat.h>

static struct resource smc91x_resources[] = {
[0] = {
.start = 0x300,
.end = 0x300 + 0x020 - 1,
.name = "smc91x-regs",
.start = PA_SMSC + 0x300,
.end = PA_SMSC + 0x300 + 0x020 - 1,
.flags = IORESOURCE_MEM,
},
[1] = {
Expand All @@ -27,9 +29,18 @@ static struct resource smc91x_resources[] = {
},
};

static struct smc91x_platdata smc91x_info = {
.flags = SMC91X_USE_16BIT,
};

static struct platform_device smc91x_device = {
.name = "smc91x",
.id = -1,
.dev = {
.dma_mask = NULL,
.coherent_dma_mask = 0xffffffff,
.platform_data = &smc91x_info,
},
.num_resources = ARRAY_SIZE(smc91x_resources),
.resource = smc91x_resources,
};
Expand Down

0 comments on commit f11c9c2

Please sign in to comment.