Searched refs:idp (Results 1 - 2 of 2) sorted by relevance

/u-boot/drivers/power/pmic/
H A Das3722.c44 static int as3722_read_id(struct udevice *dev, uint *idp, uint *revisionp) argument
53 *idp = ret;
/u-boot/drivers/mtd/
H A Dmtdcore.c95 void idr_remove(struct idr *idp, int id) argument
97 if (idp->id[id].used) {
98 idp->id[id].used = 0;
99 idp->updated = true;
104 void *idr_find(struct idr *idp, int id) argument
106 if (idp->id[id].used)
107 return idp->id[id].ptr;
112 void *idr_get_next(struct idr *idp, int *next) argument
117 ret = idr_find(idp, id);
120 if (!idp
130 idr_alloc(struct idr *idp, void *ptr, int start, int end, gfp_t gfp_mask) argument
[all...]

Completed in 40 milliseconds