data_max           25 drivers/staging/greybus/sdio.c 	size_t			data_max;
data_max          121 drivers/staging/greybus/sdio.c 	u16 data_max;
data_max          136 drivers/staging/greybus/sdio.c 	data_max = gb_operation_get_payload_size_max(host->connection);
data_max          137 drivers/staging/greybus/sdio.c 	data_max = min(data_max - sizeof(struct gb_sdio_transfer_request),
data_max          138 drivers/staging/greybus/sdio.c 		       data_max - sizeof(struct gb_sdio_transfer_response));
data_max          140 drivers/staging/greybus/sdio.c 	blksz = min_t(u16, le16_to_cpu(response.max_blk_size), data_max);
data_max          145 drivers/staging/greybus/sdio.c 	host->data_max = data_max;
data_max          269 drivers/staging/greybus/sdio.c 	WARN_ON(len > host->data_max);
data_max          323 drivers/staging/greybus/sdio.c 	WARN_ON(len > host->data_max);
data_max          386 drivers/staging/greybus/sdio.c 		len = min(left, host->data_max);
data_max           50 drivers/staging/greybus/spilib.c static int tx_header_fit_operation(u32 tx_size, u32 count, size_t data_max)
data_max           54 drivers/staging/greybus/spilib.c 	data_max -= sizeof(struct gb_spi_transfer_request);
data_max           57 drivers/staging/greybus/spilib.c 	return tx_size + headers_size > data_max ? 0 : 1;
data_max           61 drivers/staging/greybus/spilib.c 				size_t data_max)
data_max           65 drivers/staging/greybus/spilib.c 	data_max -= sizeof(struct gb_spi_transfer_response);
data_max           67 drivers/staging/greybus/spilib.c 	if (rx_size + len > data_max)
data_max           68 drivers/staging/greybus/spilib.c 		rx_xfer_size = data_max - rx_size;
data_max           82 drivers/staging/greybus/spilib.c 				size_t data_max)
data_max           86 drivers/staging/greybus/spilib.c 	data_max -= sizeof(struct gb_spi_transfer_request);
data_max           89 drivers/staging/greybus/spilib.c 	if (tx_size + headers_size + len > data_max)
data_max           90 drivers/staging/greybus/spilib.c 		return data_max - (tx_size + sizeof(struct gb_spi_transfer));
data_max          174 drivers/staging/greybus/spilib.c 	size_t data_max;
data_max          177 drivers/staging/greybus/spilib.c 	data_max = gb_operation_get_payload_size_max(connection);
data_max          198 drivers/staging/greybus/spilib.c 			if (!tx_header_fit_operation(tx_size, count, data_max))
data_max          201 drivers/staging/greybus/spilib.c 							 len, data_max);
data_max          208 drivers/staging/greybus/spilib.c 							 len, data_max);
data_max          219 drivers/staging/greybus/spilib.c 		if (!xfer || total_len >= data_max)