of_private.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #ifndef _LINUX_OF_PRIVATE_H
  2. #define _LINUX_OF_PRIVATE_H
  3. /*
  4. * Private symbols used by OF support code
  5. *
  6. * Paul Mackerras August 1996.
  7. * Copyright (C) 1996-2005 Paul Mackerras.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version
  12. * 2 of the License, or (at your option) any later version.
  13. */
  14. /**
  15. * struct alias_prop - Alias property in 'aliases' node
  16. * @link: List node to link the structure in aliases_lookup list
  17. * @alias: Alias property name
  18. * @np: Pointer to device_node that the alias stands for
  19. * @id: Index value from end of alias name
  20. * @stem: Alias string without the index
  21. *
  22. * The structure represents one alias property of 'aliases' node as
  23. * an entry in aliases_lookup list.
  24. */
  25. struct alias_prop {
  26. struct list_head link;
  27. const char *alias;
  28. struct device_node *np;
  29. int id;
  30. char stem[0];
  31. };
  32. extern struct mutex of_aliases_mutex;
  33. extern struct list_head aliases_lookup;
  34. #endif /* _LINUX_OF_PRIVATE_H */