You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
my application was based on a newer linux kernel, a function uses the "struct fwnode_handle".
function()
{
struct of_phandle_args args;
.
.
.
return args.np->fwnode.dev->platform_data;
}
But in the meta-tegra kernel 4.9.253 the "fwnod_handle" hat no member named dev.
struct fwnode_handle {
enum fwnode_type type;
struct fwnode_handle *secondary;
};
Does somebody know which other head files should I use based on this kernel and how to avoid this problem?
Thanks a lot!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi all,
my application was based on a newer linux kernel, a function uses the "struct fwnode_handle".
function()
{
struct of_phandle_args args;
.
.
.
return args.np->fwnode.dev->platform_data;
}
But in the meta-tegra kernel 4.9.253 the "fwnod_handle" hat no member named dev.
struct fwnode_handle {
enum fwnode_type type;
struct fwnode_handle *secondary;
};
Does somebody know which other head files should I use based on this kernel and how to avoid this problem?
Thanks a lot!
BR,
Danny
Beta Was this translation helpful? Give feedback.
All reactions