Identity.c 742 B

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