|
@@ -147,6 +147,14 @@ static struct platform_device net2272_bfin_device = {
|
|
|
* Driver needs to know address, irq and flag pin.
|
|
|
*/
|
|
|
#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
|
|
|
+#include <linux/smc91x.h>
|
|
|
+
|
|
|
+static struct smc91x_platdata smc91x_info = {
|
|
|
+ .flags = SMC91X_USE_32BIT | SMC91X_NOWAIT,
|
|
|
+ .leda = RPC_LED_100_10,
|
|
|
+ .ledb = RPC_LED_TX_RX,
|
|
|
+};
|
|
|
+
|
|
|
static struct resource smc91x_resources[] = {
|
|
|
{
|
|
|
.name = "smc91x-regs",
|
|
@@ -166,6 +174,9 @@ static struct platform_device smc91x_device = {
|
|
|
.id = 0,
|
|
|
.num_resources = ARRAY_SIZE(smc91x_resources),
|
|
|
.resource = smc91x_resources,
|
|
|
+ .dev = {
|
|
|
+ .platform_data = &smc91x_info,
|
|
|
+ },
|
|
|
};
|
|
|
#endif
|
|
|
|