Re: [Qemu-devel] [PATCH] e1000: Removing unnecessary if statement

2016-05-29 Thread Michael Tokarev
Applied to -trivial, thanks! /mjt

Re: [Qemu-devel] [PATCH] e1000: Removing unnecessary if statement

2016-05-28 Thread Stefan Weil
Am 29.05.2016 um 08:37 schrieb Sameeh Jubran: > Since mit_delay can never be 0 this if statement is > superfluous. > > Signed-off-by: Sameeh Jubran > --- > hw/net/e1000.c | 8 +++- > 1 file changed, 3 insertions(+), 5 deletions(-) > > diff --git a/hw/net/e1000.c b/hw/net/e1000.c > index 8e79b

[Qemu-devel] [PATCH] e1000: Removing unnecessary if statement

2016-05-28 Thread Sameeh Jubran
Since mit_delay can never be 0 this if statement is superfluous. Signed-off-by: Sameeh Jubran --- hw/net/e1000.c | 8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/hw/net/e1000.c b/hw/net/e1000.c index 8e79b55..eb903a9 100644 --- a/hw/net/e1000.c +++ b/hw/net/e1000.c @@