dp_peer.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Copyright (c) 2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #include <qdf_types.h>
  19. #include <qdf_lock.h>
  20. #include "dp_types.h"
  21. #define DP_INVALID_PEER_ID 0xffff
  22. /**
  23. * dp_peer_find_by_id() - Returns peer object given the peer id
  24. *
  25. * @soc : core DP soc context
  26. * @peer_id : peer id from peer object can be retrieved
  27. *
  28. * Return: struct dp_peer*: Pointer to DP peer object
  29. */
  30. static inline struct dp_peer *
  31. dp_peer_find_by_id(struct dp_soc *soc,
  32. uint16_t peer_id)
  33. {
  34. struct dp_peer *peer;
  35. /* TODO: Hold lock */
  36. peer = (peer_id >= soc->max_peers) ? NULL :
  37. soc->peer_id_to_obj_map[peer_id];
  38. return peer;
  39. }