|
[PATCH 4.19.y-cip 40/57] ASoC: rsnd: update BSDSR/BSDISR handling
Hi! ... ... If error happens, would it make sense to propagate it back to the caller? Best regards, Pavel
Hi! ... ... If error happens, would it make sense to propagate it back to the caller? Best regards, Pavel
|
By
Pavel Machek
· #3554
·
|
|
[PATCH 4.19.y-cip 48/57] ASoC: rsnd: src: Avoid a potential deadlock
Could this be moved near the patch it fixes? Or even merged to it? Introducing deadlocks is bad for bisection at the very least... Best regards, Pavel
Could this be moved near the patch it fixes? Or even merged to it? Introducing deadlocks is bad for bisection at the very least... Best regards, Pavel
|
By
Pavel Machek
· #3555
·
|
|
[PATCH 4.19.y-cip 49/57] ASoC: rsnd: src: fix compiler warnings
Hi! I'd prefer this to be need the patch it fixes, too. Thanks, Pavel
Hi! I'd prefer this to be need the patch it fixes, too. Thanks, Pavel
|
By
Pavel Machek
· #3556
·
|
|
[PATCH 4.19.y-cip 50/57] ASoC: rsnd: fixup 6ch settings to 8ch
Ok, but... Should the if ((chan > 8) || (chan < 0)) ever be true in practice? Sounds like bogus inputs to me. Should we dev_err() and return error in those cases? Or at least WARN_ON()? Best regards,
Ok, but... Should the if ((chan > 8) || (chan < 0)) ever be true in practice? Sounds like bogus inputs to me. Should we dev_err() and return error in those cases? Or at least WARN_ON()? Best regards,
|
By
Pavel Machek
· #3557
·
|
|
[PATCH 4.19.y-cip 52/57] ASoC: rsnd: fixup mod ID calculation in rsnd_ctu_probe_
Ok, but again, could it be next to the patch it fixes? Thanks, Pavel
Ok, but again, could it be next to the patch it fixes? Thanks, Pavel
|
By
Pavel Machek
· #3558
·
|
|
[PATCH 4.4.y-cip 00/83] Add RZ/G1C SD/eMMC support
Hi! Thanks for the series. I'm currently reviewing it, I have some comments but nothing really bad so far. I'm now around the middle. Best regards, Pavel
Hi! Thanks for the series. I'm currently reviewing it, I have some comments but nothing really bad so far. I'm now around the middle. Best regards, Pavel
|
By
Pavel Machek
· #3676
·
|
|
[PATCH 4.4.y-cip 02/83] mmc: tmio_dma: remove debug messages with little information
Hi! Its too late to change that now, but 1/ fixes messages and then 2/ just deletes them. Single patch would do. Best regards, Pavel
Hi! Its too late to change that now, but 1/ fixes messages and then 2/ just deletes them. Single patch would do. Best regards, Pavel
|
By
Pavel Machek
· #3677
·
|
|
[PATCH 4.4.y-cip 15/83] mmc: tmio: stop clock when 0Hz is requested
Hi! clk = 0 initialization is never used. This is black magic. Where does 0x80000080 come from? Would it be possible to get some comment/explanation? What does bit 22 in clk mean? Should it go to temp
Hi! clk = 0 initialization is never used. This is black magic. Where does 0x80000080 come from? Would it be possible to get some comment/explanation? What does bit 22 in clk mean? Should it go to temp
|
By
Pavel Machek
· #3678
·
|
|
[PATCH 4.4.y-cip 18/83] mmc: tmio: remove now unneeded seperate irq handlers
Hi! I'm not a great fan of function conversion to boolean here. With irqreturn_t it is clear what the values area; it is more ambiguous with the bool. And it is converted right back into irqreturn_t h
Hi! I'm not a great fan of function conversion to boolean here. With irqreturn_t it is clear what the values area; it is more ambiguous with the bool. And it is converted right back into irqreturn_t h
|
By
Pavel Machek
· #3680
·
|
|
[PATCH 4.4.y-cip 26/83] mmc: tmio/sdhi: introduce flag for RCar 2+ specific features
Hi! I'd add a comment here that gen2 allows fast clock changes ... and whatever other features the driver is actually using. Best regards, Pavel
Hi! I'd add a comment here that gen2 allows fast clock changes ... and whatever other features the driver is actually using. Best regards, Pavel
|
By
Pavel Machek
· #3681
·
|
|
[PATCH 4.4.y-cip 31/83] mmc: host: sh_mobile_sdhi: move card_busy from tmio to sdhi
Bool would make sense here, if the change is practical without changing too many interfaces... (and unless interface is something like 0/1/-ERRNO...) Best regards, Pavel
Bool would make sense here, if the change is practical without changing too many interfaces... (and unless interface is something like 0/1/-ERRNO...) Best regards, Pavel
|
By
Pavel Machek
· #3682
·
|
|
[PATCH 4.4.y-cip 33/83] mmc: tmio: add eMMC support
WIDTH_1 and WIDTH_8 would be better names, for consistency with rest of code. "WIDTH" without number is quite confusing. Best regards, Pavel
WIDTH_1 and WIDTH_8 would be better names, for consistency with rest of code. "WIDTH" without number is quite confusing. Best regards, Pavel
|
By
Pavel Machek
· #3683
·
|
|
[PATCH 4.4.y-cip 36/83] mmc: sh_mobile_sdhi: add ocr_mask option
Hi! This is not quite english. And as of_data->tmio_ocr_mask is never written, I don't see how this can fix the problem effect. Best regards, Pavel
Hi! This is not quite english. And as of_data->tmio_ocr_mask is never written, I don't see how this can fix the problem effect. Best regards, Pavel
|
By
Pavel Machek
· #3684
·
|
|
[PATCH 4.4.y-cip 37/83] mmc: tmio: enhance illegal sequence handling
Hi! Is this removal intentional? I'm not sure from the changelog. Best regards, Pavel
Hi! Is this removal intentional? I'm not sure from the changelog. Best regards, Pavel
|
By
Pavel Machek
· #3685
·
|
|
[PATCH 4.4.y-cip 40/83] mmc: core: Add helper to see if a host can be retuned
Probably not worth changing any more, but it would be easier to review if it was merged with the first user. Best regards, Pavel
Probably not worth changing any more, but it would be easier to review if it was merged with the first user. Best regards, Pavel
|
By
Pavel Machek
· #3686
·
|
|
[PATCH 4.4.y-cip 41/83] mmc: tmio: Add tuning support
Hi! I don't see why tuning should depend on register size (thus sizeof(long)) of the host CPU. If 32 is enough, put 32 there... if not, just use 64? Or perhaps introduce a #define MAX_TAPS; it will be
Hi! I don't see why tuning should depend on register size (thus sizeof(long)) of the host CPU. If 32 is enough, put 32 there... if not, just use 64? Or perhaps introduce a #define MAX_TAPS; it will be
|
By
Pavel Machek
· #3687
·
|
|
[PATCH 4.4.y-cip 56/83] mmc: host: tmio: refactor calls to sdio irq
In mainline, the commit removes the argument, as it says in the changelog. Not here in the backport. Why the difference? Best regards, Pavel
In mainline, the commit removes the argument, as it says in the changelog. Not here in the backport. Why the difference? Best regards, Pavel
|
By
Pavel Machek
· #3688
·
|
|
[PATCH 4.4.y-cip 63/83] mmc: tmio: always get number of taps
Hi! I'd somehow assume number of tuning parameters would be fixed... Does the hardware really change it? Out of curiosity, why is it doing so? Best regards, Pavel
Hi! I'd somehow assume number of tuning parameters would be fixed... Does the hardware really change it? Out of curiosity, why is it doing so? Best regards, Pavel
|
By
Pavel Machek
· #3689
·
|
|
[PATCH 4.4.y-cip 66/83] mmc: tmio: rename tmio_mmc_{pio => core}.c
Hi! This patch creates tmio_mmc_core.c ... ... which is already present in the Makefile before the patch. That can't be right. Best regards, Pavel
Hi! This patch creates tmio_mmc_core.c ... ... which is already present in the Makefile before the patch. That can't be right. Best regards, Pavel
|
By
Pavel Machek
· #3690
·
|
|
[PATCH 4.4.y-cip 69/83] mmc: renesas-sdhi: make renesas_sdhi_sys_dmac main module file
Patches 66 to 69 do a big rename while changing the code in question. That makes them hard / tricky to review. I should review that again, either now or in next version of the patch. Prototype changed
Patches 66 to 69 do a big rename while changing the code in question. That makes them hard / tricky to review. I should review that again, either now or in next version of the patch. Prototype changed
|
By
Pavel Machek
· #3691
·
|