Re: [PATCH 2/8] pch_uart: Add uart_clk selection for the MinnowBoard

2013-06-26 Thread Darren Hart
On Wed, 2013-06-26 at 09:25 +0200, Jiri Slaby wrote: > On 06/26/2013 09:19 AM, Darren Hart wrote: > > You can't actually use this driver on 64 bit as there is no hardware, > > Oh, so is this another candidate for adding dependson (X86_32 || > COMPILE_TEST) as well as the other *_PCH options? As f

Re: [PATCH 2/8] pch_uart: Add uart_clk selection for the MinnowBoard

2013-06-26 Thread Jiri Slaby
On 06/26/2013 09:19 AM, Darren Hart wrote: > You can't actually use this driver on 64 bit as there is no hardware, Oh, so is this another candidate for adding dependson (X86_32 || COMPILE_TEST) as well as the other *_PCH options? -- js suse labs -- To unsubscribe from this list: send the line "u

Re: [PATCH 2/8] pch_uart: Add uart_clk selection for the MinnowBoard

2013-06-26 Thread Darren Hart
On Wed, 2013-06-26 at 08:43 +0200, Jiri Slaby wrote: > On 06/26/2013 05:58 AM, Darren Hart wrote: > > Subject: [PATCH] pch_uart: Use DMI interface for board detection > > > > Use the DMI interface rather than manually matching DMI strings. > > > > Signed-off-by: Darren Hart > > --- > > drivers/

Re: [PATCH 2/8] pch_uart: Add uart_clk selection for the MinnowBoard

2013-06-25 Thread Jiri Slaby
On 06/26/2013 05:58 AM, Darren Hart wrote: > Subject: [PATCH] pch_uart: Use DMI interface for board detection > > Use the DMI interface rather than manually matching DMI strings. > > Signed-off-by: Darren Hart > --- > drivers/tty/serial/pch_uart.c | 71 > +---

Re: [PATCH 2/8] pch_uart: Add uart_clk selection for the MinnowBoard

2013-06-25 Thread Greg Kroah-Hartman
On Tue, Jun 25, 2013 at 08:58:45PM -0700, Darren Hart wrote: > > How about this, which makes it easy to backport, then you fix it up > > properly for 3.12? This comes after my tree is pretty much closed for > > 3.11, but a simple device id addition like this is acceptable, but I'll > > not get to

Re: [PATCH 2/8] pch_uart: Add uart_clk selection for the MinnowBoard

2013-06-25 Thread Darren Hart
On Tue, 2013-06-25 at 20:39 -0700, Greg Kroah-Hartman wrote: > On Tue, Jun 25, 2013 at 08:16:18PM -0700, Darren Hart wrote: > > On Tue, 2013-06-25 at 19:31 -0700, Greg Kroah-Hartman wrote: > > > On Tue, Jun 25, 2013 at 06:53:22PM -0700, Darren Hart wrote: > > > > > > > struct pch_uart_buffer {

Re: [PATCH 2/8] pch_uart: Add uart_clk selection for the MinnowBoard

2013-06-25 Thread Greg Kroah-Hartman
On Tue, Jun 25, 2013 at 08:16:18PM -0700, Darren Hart wrote: > On Tue, 2013-06-25 at 19:31 -0700, Greg Kroah-Hartman wrote: > > On Tue, Jun 25, 2013 at 06:53:22PM -0700, Darren Hart wrote: > > > > > struct pch_uart_buffer { > > > unsigned char *buf; > > > @@ -398,6 +399,10 @@ static int pch_u

Re: [PATCH 2/8] pch_uart: Add uart_clk selection for the MinnowBoard

2013-06-25 Thread Darren Hart
On Tue, 2013-06-25 at 19:31 -0700, Greg Kroah-Hartman wrote: > On Tue, Jun 25, 2013 at 06:53:22PM -0700, Darren Hart wrote: > > > struct pch_uart_buffer { > > unsigned char *buf; > > @@ -398,6 +399,10 @@ static int pch_uart_get_uartclk(void) > > strstr(cmp, "nanoETXexpress-T

Re: [PATCH 2/8] pch_uart: Add uart_clk selection for the MinnowBoard

2013-06-25 Thread Greg Kroah-Hartman
On Tue, Jun 25, 2013 at 06:53:22PM -0700, Darren Hart wrote: > Use DMI_BOARD_NAME to determine if we are running on a MinnowBoard and > set the uart clock to 50MHz if so. This removes the need to pass the > user_uartclk to the kernel at boot time. > > Signed-off-by: Darren Hart > Cc: Greg Kroah-H