board-iomega_ix2_200.c 728 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * arch/arm/mach-kirkwood/board-iomega_ix2_200.c
  3. *
  4. * Iomega StorCenter ix2-200
  5. *
  6. * This file is licensed under the terms of the GNU General Public
  7. * License version 2. This program is licensed "as is" without any
  8. * warranty of any kind, whether express or implied.
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/init.h>
  12. #include <linux/mv643xx_eth.h>
  13. #include <linux/ethtool.h>
  14. #include "common.h"
  15. static struct mv643xx_eth_platform_data iomega_ix2_200_ge00_data = {
  16. .phy_addr = MV643XX_ETH_PHY_NONE,
  17. .speed = SPEED_1000,
  18. .duplex = DUPLEX_FULL,
  19. };
  20. void __init iomega_ix2_200_init(void)
  21. {
  22. /*
  23. * Basic setup. Needs to be called early.
  24. */
  25. kirkwood_ge01_init(&iomega_ix2_200_ge00_data);
  26. }