Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/staging/gdm72xx/
Dsdio_boot.c34 #define DOWNLOAD_SIZE (YMEM0_SIZE - TYPE_A_HEADER_SIZE) macro
74 buf = kmalloc(DOWNLOAD_SIZE + TYPE_A_HEADER_SIZE, GFP_KERNEL); in download_image()
87 if (img_len > DOWNLOAD_SIZE) { in download_image()
88 len = DOWNLOAD_SIZE; in download_image()
125 img_len -= DOWNLOAD_SIZE; in download_image()
126 pos += DOWNLOAD_SIZE; in download_image()
Dusb_boot.c30 #define DOWNLOAD_SIZE 1024 macro
117 size = ALIGN(img_len, DOWNLOAD_SIZE); in download_image()
126 if (img_len > DOWNLOAD_SIZE) in download_image()
127 size = DOWNLOAD_SIZE; in download_image()
161 tx_buf = kmalloc(DOWNLOAD_SIZE, GFP_KERNEL); in usb_boot()