Re: [PATCH] ata: ide-sff: fix integer overflow in ata_wait_ready()

2015-09-03 Thread Sascha Hauer
On Wed, Sep 02, 2015 at 07:20:50PM +0300, Peter Mamonov wrote:
> Signed-off-by: Peter Mamonov 
> ---
>  drivers/ata/ide-sff.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied, thanks

Sascha


-- 
Pengutronix e.K.   | |
Industrial Linux Solutions | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0|
Amtsgericht Hildesheim, HRA 2686   | Fax:   +49-5121-206917- |

___
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox


[PATCH] ata: ide-sff: fix integer overflow in ata_wait_ready()

2015-09-02 Thread Peter Mamonov
Signed-off-by: Peter Mamonov 
---
 drivers/ata/ide-sff.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/ata/ide-sff.c b/drivers/ata/ide-sff.c
index a8f2b26..e32cc3f 100644
--- a/drivers/ata/ide-sff.c
+++ b/drivers/ata/ide-sff.c
@@ -118,7 +118,7 @@ static int ata_wait_ready(struct ide_port *ide, unsigned 
timeout)
 {
uint8_t status;
uint64_t start = get_time_ns();
-   uint64_t toffs = timeout * 1000 * 1000;
+   uint64_t toffs = timeout * MSECOND;
 
do {
status = ata_rd_status(ide);
-- 
2.1.4


___
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox