Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/mmc/host/
Ddw_mmc.c1027 host->part_buf_count = 0; in dw_mci_submit_data()
1915 host->part_buf_count = cnt; in dw_mci_set_part_bytes()
1921 cnt = min(cnt, (1 << host->data_shift) - host->part_buf_count); in dw_mci_push_part_bytes()
1922 memcpy((void *)&host->part_buf + host->part_buf_count, buf, cnt); in dw_mci_push_part_bytes()
1923 host->part_buf_count += cnt; in dw_mci_push_part_bytes()
1930 cnt = min_t(int, cnt, host->part_buf_count); in dw_mci_pull_part_bytes()
1934 host->part_buf_count -= cnt; in dw_mci_pull_part_bytes()
1945 host->part_buf_count = (1 << host->data_shift) - cnt; in dw_mci_pull_final_bytes()
1954 if (unlikely(host->part_buf_count)) { in dw_mci_push_data16()
1959 if (host->part_buf_count == 2) { in dw_mci_push_data16()
[all …]
/linux-4.4.14/include/linux/mmc/
Ddw_mmc.h204 u8 part_buf_count; member