Re: [PATCH 04/42] mmc: dw_mmc: Extract waiting for data busy into a separate routine

2024-05-23 Thread Quentin Schulz
Hi Sam, On 5/23/24 1:30 AM, Sam Protsenko wrote: Waiting for data busy is a logically separate operation and should be implemented as a separate routine. Follow Linux kernel example and extract it from dwmci_send_cmd(). This way it doesn't clutter dwmci_send_cmd() function, and can be reused lat

[PATCH 04/42] mmc: dw_mmc: Extract waiting for data busy into a separate routine

2024-05-22 Thread Sam Protsenko
Waiting for data busy is a logically separate operation and should be implemented as a separate routine. Follow Linux kernel example and extract it from dwmci_send_cmd(). This way it doesn't clutter dwmci_send_cmd() function, and can be reused later in other cases. No functional change. Signed-of