Searched defs:opp_p (Results 1 - 1 of 1) sorted by relevance

/drivers/sbus/char/
H A Dopenprom.c70 * structure will be placed in "*opp_p". Return value is the length
73 static int copyin(struct openpromio __user *info, struct openpromio **opp_p) argument
77 if (!info || !opp_p)
92 if (!(*opp_p = kzalloc(sizeof(int) + bufsize + 1, GFP_KERNEL)))
95 if (copy_from_user(&(*opp_p)->oprom_array,
97 kfree(*opp_p);
103 static int getstrings(struct openpromio __user *info, struct openpromio **opp_p) argument
108 if (!info || !opp_p)
111 if (!(*opp_p = kzalloc(sizeof(int) + OPROMMAXPARAM + 1, GFP_KERNEL)))
114 (*opp_p)
[all...]

Completed in 13 milliseconds