Home
last modified time | relevance | path

Searched refs:bigbuffer (Results 1 – 1 of 1) sorted by relevance

/linux-2.4.37.9/drivers/usb/
Dusb.c2069 unsigned char *bigbuffer; in usb_get_configuration() local
2123 bigbuffer = kmalloc(length, GFP_KERNEL); in usb_get_configuration()
2124 if (!bigbuffer) { in usb_get_configuration()
2131 result = usb_get_descriptor(dev, USB_DT_CONFIG, cfgno, bigbuffer, length); in usb_get_configuration()
2134 kfree(bigbuffer); in usb_get_configuration()
2141 kfree(bigbuffer); in usb_get_configuration()
2145 dev->rawdescriptors[cfgno] = bigbuffer; in usb_get_configuration()
2147 result = usb_parse_configuration(&dev->config[cfgno], bigbuffer); in usb_get_configuration()