mali_kbase_utility.c 769 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. *
  3. * (C) COPYRIGHT 2012-2013, 2015 ARM Limited. All rights reserved.
  4. *
  5. * This program is free software and is provided to you under the terms of the
  6. * GNU General Public License version 2 as published by the Free Software
  7. * Foundation, and any use by you of this program is subject to the terms
  8. * of such GNU licence.
  9. *
  10. * A copy of the licence is included with the program, and can also be obtained
  11. * from Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  12. * Boston, MA 02110-1301, USA.
  13. *
  14. */
  15. #include <mali_kbase.h>
  16. bool kbasep_list_member_of(const struct list_head *base, struct list_head *entry)
  17. {
  18. struct list_head *pos = base->next;
  19. while (pos != base) {
  20. if (pos == entry)
  21. return true;
  22. pos = pos->next;
  23. }
  24. return false;
  25. }