Topology.c 751 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed Topology (struct plc * plc);
  11. *
  12. * plc.h
  13. *
  14. * call appropriate topology module based on the PLC device
  15. * type;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <cmaier@qca.qualcomm.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef TOPOLOGY_SOURCE
  22. #define TOPOLOGY_SOURCE
  23. #include "../plc/plc.h"
  24. signed Topology (struct plc * plc)
  25. {
  26. return (PLCSelect (plc, Topology1, Topology2));
  27. }
  28. #endif