static struct ax_plat_data ax88796_platdata = { .wordlength = 2, .dcr_val = 0x1, .rcr_val = 0x40, .flags = AXFLG_MAC_FROMDEV,
}; static struct resource ax88796_res[] = { [0] = { .start = 0x10000200, .end = 0x1000021f, .flags = IORESOURCE_MEM, }, [1] = { .start = IRQ_EINT2, .end = IRQ_EINT2, .flags = IORESOURCE_IRQ, } }; struct platform_device ax88796_dev = { .name = "ax88796", .id = -1, .num_resources = ARRAY_SIZE(ax88796_res), .resource = ax88796_res, .dev = { .platform_data = &ax88796_platdata, } };
|