Lines Matching refs:win64
726 struct property *win64; in remove_ddw() local
734 win64 = of_find_property(np, DIRECT64_PROPNAME, NULL); in remove_ddw()
735 if (!win64) in remove_ddw()
738 if (ret || win64->length < sizeof(*dwp)) in remove_ddw()
741 dwp = win64->value; in remove_ddw()
766 ret = of_remove_property(np, win64); in remove_ddw()
917 struct property *win64; in enable_ddw() local
993 win64 = kzalloc(sizeof(struct property), GFP_KERNEL); in enable_ddw()
994 if (!win64) { in enable_ddw()
999 win64->name = kstrdup(DIRECT64_PROPNAME, GFP_KERNEL); in enable_ddw()
1000 win64->value = ddwprop = kmalloc(sizeof(*ddwprop), GFP_KERNEL); in enable_ddw()
1001 win64->length = sizeof(*ddwprop); in enable_ddw()
1002 if (!win64->name || !win64->value) { in enable_ddw()
1026 win64->value, tce_setrange_multi_pSeriesLP_walk); in enable_ddw()
1033 ret = of_add_property(pdn, win64); in enable_ddw()
1056 kfree(win64->name); in enable_ddw()
1057 kfree(win64->value); in enable_ddw()
1058 kfree(win64); in enable_ddw()