Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
xcap
xcap-capability-linux
Commits
0c9ec467
Commit
0c9ec467
authored
Sep 21, 2005
by
Pete Popov
Committed by
Ralf Baechle
Oct 29, 2005
Browse files
smc91x platform support; requires patch to smc91x.h which was sent
upstream. Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
ba264b34
Changes
1
Hide whitespace changes
Inline
Side-by-side
arch/mips/au1000/common/platform.c
View file @
0c9ec467
...
...
@@ -245,6 +245,31 @@ static struct platform_device au1x00_pcmcia_device = {
.
id
=
0
,
};
#ifdef CONFIG_MIPS_DB1200
static
struct
resource
smc91x_resources
[]
=
{
[
0
]
=
{
.
name
=
"smc91x-regs"
,
.
start
=
AU1XXX_SMC91111_PHYS_ADDR
,
.
end
=
AU1XXX_SMC91111_PHYS_ADDR
+
0xfffff
,
.
flags
=
IORESOURCE_MEM
,
},
[
1
]
=
{
.
start
=
AU1XXX_SMC91111_IRQ
,
.
end
=
AU1XXX_SMC91111_IRQ
,
.
flags
=
IORESOURCE_IRQ
,
},
};
static
struct
platform_device
smc91x_device
=
{
.
name
=
"smc91x"
,
.
id
=
-
1
,
.
num_resources
=
ARRAY_SIZE
(
smc91x_resources
),
.
resource
=
smc91x_resources
,
};
#endif
static
struct
platform_device
*
au1xxx_platform_devices
[]
__initdata
=
{
&
au1xxx_usb_ohci_device
,
&
au1x00_pcmcia_device
,
...
...
@@ -261,6 +286,9 @@ static struct platform_device *au1xxx_platform_devices[] __initdata = {
&
au1200_ide0_device
,
&
au1xxx_mmc_device
,
#endif
#ifdef CONFIG_MIPS_DB1200
&
smc91x_device
,
#endif
};
int
au1xxx_platform_init
(
void
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment