Re: [Qemu-devel] [PATCH v3] usb: Change *_exitfn return type from int to void

2016-10-16 Thread Michael Tokarev
13.10.2016 23:21, Akanksha Srivastava wrote: > The *_exitfn functions cannot fail and should not be > returning int. ... Applied to -trivial, thank you! /mjt

Re: [Qemu-devel] [PATCH v3] usb: Change *_exitfn return type from int to void

2016-10-16 Thread Stefan Hajnoczi
On Fri, Oct 14, 2016 at 01:51:31AM +0530, Akanksha Srivastava wrote: > The *_exitfn functions cannot fail and should not be > returning int. > This also removes the passthru_exitfn since this callback > does nothing as of now. > This was suggested as a Bite-sized task for code cleanup. >

[Qemu-devel] [PATCH v3] usb: Change *_exitfn return type from int to void

2016-10-13 Thread Akanksha Srivastava
The *_exitfn functions cannot fail and should not be returning int. This also removes the passthru_exitfn since this callback does nothing as of now. This was suggested as a Bite-sized task for code cleanup. Signed-off-by: Akanksha Srivastava ---