Ignore:
Timestamp:
Sep 18, 2022, 7:39:50 AM (3 years ago)
Author:
Paul Smedley
Message:

Initial commit of 5.17.15

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/branches/uniaud32-exp/include/linux/of.h

    r615 r737  
    2828
    2929
     30struct device_node {
     31        const char *name;
     32//      phandle phandle;
     33        const char *full_name;
     34//      struct fwnode_handle fwnode;
     35
     36        struct  property *properties;
     37        struct  property *deadprops;    /* removed properties */
     38        struct  device_node *parent;
     39        struct  device_node *child;
     40        struct  device_node *sibling;
     41        struct  kobject kobj;
     42        unsigned long _flags;
     43        void    *data;
     44};
    3045struct property {
    3146        char    *name;
     
    6075        return prop ? true : false;
    6176}
     77extern void of_node_put(struct device_node *node);
    6278
    6379#endif /* _LINUX_OF_H */
Note: See TracChangeset for help on using the changeset viewer.