RemoteDeviceList.c 814 B

12345678910111213141516171819202122232425262728293031
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed RemoteDeviceList (struct channel * channel, char const * space);
  11. *
  12. * print the neighbor device list on stdout;
  13. *
  14. *--------------------------------------------------------------------*/
  15. #ifndef REMOTEDEVICELIST_SOURCE
  16. #define REMOTEDEVICELIST_SOURCE
  17. #include "../plc/plc.h"
  18. signed RemoteDeviceList (struct plc * plc, char const * space, char const * comma)
  19. {
  20. return ((plc->hardwareID < CHIPSET_AR7400)? RemoteDeviceList1 (plc, space, comma): RemoteDeviceList2 (plc, space, comma));
  21. }
  22. #endif