RE: [PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-06-03 Thread Badola Nikhil
> -Original Message- > From: Badola Nikhil-B46172 > Sent: Monday, June 01, 2015 11:50 AM > To: 'Greg KH' > Cc: linux-kernel@vger.kernel.org; st...@rowland.harvard.edu; linux- > u...@vger.kernel.org; Joe Perches > Subject: RE: [PATCH 3/5] drivers:usb:fsl: Replace m

RE: [PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-06-03 Thread Badola Nikhil
-Original Message- From: Badola Nikhil-B46172 Sent: Monday, June 01, 2015 11:50 AM To: 'Greg KH' Cc: linux-kernel@vger.kernel.org; st...@rowland.harvard.edu; linux- u...@vger.kernel.org; Joe Perches Subject: RE: [PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

RE: [PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-06-01 Thread Badola Nikhil
> -Original Message- > From: Greg KH [mailto:gre...@linuxfoundation.org] > Sent: Monday, June 01, 2015 2:32 AM > To: Joe Perches > Cc: Badola Nikhil-B46172; linux-kernel@vger.kernel.org; > st...@rowland.harvard.edu; linux-...@vger.kernel.org > Subject: Re: [PATCH

RE: [PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-06-01 Thread Badola Nikhil
-Original Message- From: Greg KH [mailto:gre...@linuxfoundation.org] Sent: Monday, June 01, 2015 2:32 AM To: Joe Perches Cc: Badola Nikhil-B46172; linux-kernel@vger.kernel.org; st...@rowland.harvard.edu; linux-...@vger.kernel.org Subject: Re: [PATCH 3/5] drivers:usb:fsl: Replace

Re: [PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-05-31 Thread Greg KH
On Sun, May 31, 2015 at 12:11:18AM -0700, Joe Perches wrote: > On Sun, 2015-05-31 at 15:50 +0900, Greg KH wrote: > > On Tue, May 26, 2015 at 05:15:48PM +0530, Nikhil Badola wrote: > > > Replace macros with enumerated type to represent usb ip > > > controller version > > > > > > Signed-off-by:

Re: [PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-05-31 Thread Greg KH
On Tue, May 26, 2015 at 05:15:48PM +0530, Nikhil Badola wrote: > Replace macros with enumerated type to represent usb ip > controller version > > Signed-off-by: Nikhil Badola > --- > include/linux/fsl_devices.h | 13 - > 1 file changed, 8 insertions(+), 5 deletions(-) > > diff

Re: [PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-05-31 Thread Joe Perches
On Sun, 2015-05-31 at 15:50 +0900, Greg KH wrote: > On Tue, May 26, 2015 at 05:15:48PM +0530, Nikhil Badola wrote: > > Replace macros with enumerated type to represent usb ip > > controller version > > > > Signed-off-by: Nikhil Badola > > --- > > include/linux/fsl_devices.h | 13 - >

Re: [PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-05-31 Thread Greg KH
On Tue, May 26, 2015 at 05:15:48PM +0530, Nikhil Badola wrote: > Replace macros with enumerated type to represent usb ip > controller version > > Signed-off-by: Nikhil Badola > --- > include/linux/fsl_devices.h | 13 - > 1 file changed, 8 insertions(+), 5 deletions(-) > > diff

Re: [PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-05-31 Thread Greg KH
On Sun, May 31, 2015 at 12:11:18AM -0700, Joe Perches wrote: On Sun, 2015-05-31 at 15:50 +0900, Greg KH wrote: On Tue, May 26, 2015 at 05:15:48PM +0530, Nikhil Badola wrote: Replace macros with enumerated type to represent usb ip controller version Signed-off-by: Nikhil Badola

Re: [PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-05-31 Thread Joe Perches
On Sun, 2015-05-31 at 15:50 +0900, Greg KH wrote: On Tue, May 26, 2015 at 05:15:48PM +0530, Nikhil Badola wrote: Replace macros with enumerated type to represent usb ip controller version Signed-off-by: Nikhil Badola nikhil.bad...@freescale.com --- include/linux/fsl_devices.h | 13

Re: [PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-05-31 Thread Greg KH
On Tue, May 26, 2015 at 05:15:48PM +0530, Nikhil Badola wrote: Replace macros with enumerated type to represent usb ip controller version Signed-off-by: Nikhil Badola nikhil.bad...@freescale.com --- include/linux/fsl_devices.h | 13 - 1 file changed, 8 insertions(+), 5

Re: [PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-05-31 Thread Greg KH
On Tue, May 26, 2015 at 05:15:48PM +0530, Nikhil Badola wrote: Replace macros with enumerated type to represent usb ip controller version Signed-off-by: Nikhil Badola nikhil.bad...@freescale.com --- include/linux/fsl_devices.h | 13 - 1 file changed, 8 insertions(+), 5

[PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-05-26 Thread Nikhil Badola
Replace macros with enumerated type to represent usb ip controller version Signed-off-by: Nikhil Badola --- include/linux/fsl_devices.h | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/include/linux/fsl_devices.h b/include/linux/fsl_devices.h index

[PATCH 3/5] drivers:usb:fsl: Replace macros with enumerated type

2015-05-26 Thread Nikhil Badola
Replace macros with enumerated type to represent usb ip controller version Signed-off-by: Nikhil Badola nikhil.bad...@freescale.com --- include/linux/fsl_devices.h | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/include/linux/fsl_devices.h