linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PATCH] TTY/serial patches for 3.3-rc1
@ 2012-01-30 21:12 Greg KH
  2012-01-30 23:19 ` Linus Torvalds
  0 siblings, 1 reply; 7+ messages in thread
From: Greg KH @ 2012-01-30 21:12 UTC (permalink / raw)
  To: Linus Torvalds, Andrew Morton; +Cc: linux-kernel, linux-serial

Here are some tty/serial patches for 3.3-rc1

Big thing here is the movement of the 8250 serial drivers to their own
directory, now that the patch churn has calmed down.

Other than that, only minor stuff (omap patches were reverted as they
were found to be wrong), and another broken driver removed from the
system.

Please pull from:
	git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git tty-3.1-rc1

All of these patches have been in the -mm and -next trees for a while.

Patches will be sent to the linux-serial mailing list, if anyone wants
to see them.

thanks,

greg k-h

------------

 Documentation/DocBook/device-drivers.tmpl          |    1 -
 MAINTAINERS                                        |    2 +-
 drivers/tty/serial/{ => 8250}/8250.c               |    0
 drivers/tty/serial/{ => 8250}/8250.h               |    0
 drivers/tty/serial/{ => 8250}/8250_accent.c        |    0
 drivers/tty/serial/{ => 8250}/8250_acorn.c         |    0
 drivers/tty/serial/{ => 8250}/8250_boca.c          |    0
 drivers/tty/serial/{ => 8250}/8250_dw.c            |    0
 drivers/tty/serial/{ => 8250}/8250_early.c         |    0
 drivers/tty/serial/{ => 8250}/8250_exar_st16c554.c |    0
 drivers/tty/serial/{ => 8250}/8250_fourport.c      |    0
 drivers/tty/serial/{ => 8250}/8250_fsl.c           |    0
 drivers/tty/serial/{ => 8250}/8250_gsc.c           |    0
 drivers/tty/serial/{ => 8250}/8250_hp300.c         |    0
 drivers/tty/serial/{ => 8250}/8250_hub6.c          |    0
 drivers/tty/serial/{ => 8250}/8250_mca.c           |    0
 drivers/tty/serial/{ => 8250}/8250_pci.c           |    0
 drivers/tty/serial/{ => 8250}/8250_pnp.c           |    0
 drivers/tty/serial/8250/Kconfig                    |  280 ++++++++++++++++
 drivers/tty/serial/8250/Makefile                   |   20 ++
 drivers/tty/serial/{ => 8250}/m32r_sio.c           |    0
 drivers/tty/serial/{ => 8250}/m32r_sio.h           |    0
 drivers/tty/serial/{ => 8250}/m32r_sio_reg.h       |    0
 drivers/tty/serial/{ => 8250}/serial_cs.c          |    0
 drivers/tty/serial/Kconfig                         |  283 +----------------
 drivers/tty/serial/Makefile                        |   20 +-
 drivers/tty/serial/amba-pl011.c                    |   30 ++-
 drivers/tty/serial/jsm/jsm_driver.c                |    1 +
 drivers/tty/serial/max3107-aava.c                  |  344 --------------------
 drivers/tty/serial/omap-serial.c                   |    4 +-
 drivers/tty/serial/serial_core.c                   |    6 +-
 drivers/tty/tty_port.c                             |   12 +-
 32 files changed, 346 insertions(+), 657 deletions(-)
 rename drivers/tty/serial/{ => 8250}/8250.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250.h (100%)
 rename drivers/tty/serial/{ => 8250}/8250_accent.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250_acorn.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250_boca.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250_dw.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250_early.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250_exar_st16c554.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250_fourport.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250_fsl.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250_gsc.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250_hp300.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250_hub6.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250_mca.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250_pci.c (100%)
 rename drivers/tty/serial/{ => 8250}/8250_pnp.c (100%)
 create mode 100644 drivers/tty/serial/8250/Kconfig
 create mode 100644 drivers/tty/serial/8250/Makefile
 rename drivers/tty/serial/{ => 8250}/m32r_sio.c (100%)
 rename drivers/tty/serial/{ => 8250}/m32r_sio.h (100%)
 rename drivers/tty/serial/{ => 8250}/m32r_sio_reg.h (100%)
 rename drivers/tty/serial/{ => 8250}/serial_cs.c (100%)
 delete mode 100644 drivers/tty/serial/max3107-aava.c

---------------

Alan Cox (1):
      serial: Kill off Moorestown code

Greg Kroah-Hartman (2):
      Revert "tty: serial: OMAP: transmit FIFO threshold interrupts don't wake the chip"
      Revert "tty: serial: OMAP: ensure FIFO levels are set correctly in non-DMA mode"

Jiri Slaby (1):
      TTY: fix UV serial console regression

Lucas Kannebley Tavares (2):
      Updated TTY MAINTAINERS info
      jsm: Fixed EEH recovery error

Paul Gortmaker (1):
      serial: group all the 8250 related code together

Paul Walmsley (2):
      tty: serial: OMAP: ensure FIFO levels are set correctly in non-DMA mode
      tty: serial: OMAP: transmit FIFO threshold interrupts don't wake the chip

Rabin Vincent (1):
      serial: amba-pl011: lock console writes against interrupts

Randy Dunlap (1):
      docbook: don't use serial_core.h in device-drivers book

Shreshtha Kumar Sahu (1):
      amba-pl011: do not disable RTS during shutdown

Shubhrajyoti D (2):
      omap-serial :Make the suspend/resume functions depend on CONFIG_PM_SLEEP.
      omap-serial: make serial_omap_restore_context depend on CONFIG_PM_RUNTIME

Simon Glass (1):
      serial: Fix wakeup init logic to speed up startup


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [GIT PATCH] TTY/serial patches for 3.3-rc1
  2012-01-30 21:12 [GIT PATCH] TTY/serial patches for 3.3-rc1 Greg KH
@ 2012-01-30 23:19 ` Linus Torvalds
  2012-01-30 23:20   ` Linus Torvalds
  2012-01-31  0:12   ` Greg KH
  0 siblings, 2 replies; 7+ messages in thread
From: Linus Torvalds @ 2012-01-30 23:19 UTC (permalink / raw)
  To: Greg KH; +Cc: Andrew Morton, linux-kernel, linux-serial

On Mon, Jan 30, 2012 at 1:12 PM, Greg KH <gregkh@suse.de> wrote:
> Here are some tty/serial patches for 3.3-rc1
>
> Please pull from:
>        git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git tty-3.1-rc1

Tssk. Your script is broken, or your manual fixup is broken. Look at
the tag-name again.

I pulled the correct one, but please be more careful.

                 Linus

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [GIT PATCH] TTY/serial patches for 3.3-rc1
  2012-01-30 23:19 ` Linus Torvalds
@ 2012-01-30 23:20   ` Linus Torvalds
  2012-01-31  0:13     ` Greg KH
  2012-01-31  0:12   ` Greg KH
  1 sibling, 1 reply; 7+ messages in thread
From: Linus Torvalds @ 2012-01-30 23:20 UTC (permalink / raw)
  To: Greg KH; +Cc: Andrew Morton, linux-kernel, linux-serial

On Mon, Jan 30, 2012 at 3:19 PM, Linus Torvalds
<torvalds@linux-foundation.org> wrote:
>
> Tssk. Your script is broken, or your manual fixup is broken. Look at
> the tag-name again.
>
> I pulled the correct one, but please be more careful.

Oh, and if it's because your old script can't verify the tag-names, so
you fix things up by hand instead of scripting it, try using
"tags/<tagname>" instead of just "<tagname>". That makes old git
versions at least see the reference, even if they don't then react to
the signing itself (ie they just treat it as the commit it points to,
rather than as a tag with interesting contents in itself)

                  Linus

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [GIT PATCH] TTY/serial patches for 3.3-rc1
  2012-01-30 23:19 ` Linus Torvalds
  2012-01-30 23:20   ` Linus Torvalds
@ 2012-01-31  0:12   ` Greg KH
  1 sibling, 0 replies; 7+ messages in thread
From: Greg KH @ 2012-01-31  0:12 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Andrew Morton, linux-kernel, linux-serial

On Mon, Jan 30, 2012 at 03:19:07PM -0800, Linus Torvalds wrote:
> On Mon, Jan 30, 2012 at 1:12 PM, Greg KH <gregkh@suse.de> wrote:
> > Here are some tty/serial patches for 3.3-rc1
> >
> > Please pull from:
> >        git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git tty-3.1-rc1
> 
> Tssk. Your script is broken, or your manual fixup is broken. Look at
> the tag-name again.
> 
> I pulled the correct one, but please be more careful.

Crap, that was my fault, I typed that by hand.  I'll verify it next time
before I send it out.

greg k-h

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [GIT PATCH] TTY/serial patches for 3.3-rc1
  2012-01-30 23:20   ` Linus Torvalds
@ 2012-01-31  0:13     ` Greg KH
  2012-01-31  0:27       ` Linus Torvalds
  0 siblings, 1 reply; 7+ messages in thread
From: Greg KH @ 2012-01-31  0:13 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Andrew Morton, linux-kernel, linux-serial

On Mon, Jan 30, 2012 at 03:20:52PM -0800, Linus Torvalds wrote:
> On Mon, Jan 30, 2012 at 3:19 PM, Linus Torvalds
> <torvalds@linux-foundation.org> wrote:
> >
> > Tssk. Your script is broken, or your manual fixup is broken. Look at
> > the tag-name again.
> >
> > I pulled the correct one, but please be more careful.
> 
> Oh, and if it's because your old script can't verify the tag-names, so
> you fix things up by hand instead of scripting it, try using
> "tags/<tagname>" instead of just "<tagname>". That makes old git
> versions at least see the reference, even if they don't then react to
> the signing itself (ie they just treat it as the commit it points to,
> rather than as a tag with interesting contents in itself)

Ah, ok, I'll try that out.

Or I can spend the time to get the new version of git installed.
Wrestling with my scripts or rpm, I don't know which is worse...

greg k-h

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [GIT PATCH] TTY/serial patches for 3.3-rc1
  2012-01-31  0:13     ` Greg KH
@ 2012-01-31  0:27       ` Linus Torvalds
  2012-01-31  1:11         ` Greg KH
  0 siblings, 1 reply; 7+ messages in thread
From: Linus Torvalds @ 2012-01-31  0:27 UTC (permalink / raw)
  To: Greg KH; +Cc: Andrew Morton, linux-kernel, linux-serial

On Mon, Jan 30, 2012 at 4:13 PM, Greg KH <gregkh@suse.de> wrote:
>
> Or I can spend the time to get the new version of git installed.
> Wrestling with my scripts or rpm, I don't know which is worse...

Why do either?

The sane way to do things is to just

    cd
    mkdir src
    cd src
    git clone git://github.com/gitster/git
    cd git
    make
    make install

all as a regular user. It will install in your $(HOME)/bin, so just
put that first in the path. No need to fight rpm, no need to fight
your scripts, you should be pretty much all done.

                 Linus

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [GIT PATCH] TTY/serial patches for 3.3-rc1
  2012-01-31  0:27       ` Linus Torvalds
@ 2012-01-31  1:11         ` Greg KH
  0 siblings, 0 replies; 7+ messages in thread
From: Greg KH @ 2012-01-31  1:11 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Andrew Morton, linux-kernel, linux-serial

On Mon, Jan 30, 2012 at 04:27:22PM -0800, Linus Torvalds wrote:
> On Mon, Jan 30, 2012 at 4:13 PM, Greg KH <gregkh@suse.de> wrote:
> >
> > Or I can spend the time to get the new version of git installed.
> > Wrestling with my scripts or rpm, I don't know which is worse...
> 
> Why do either?
> 
> The sane way to do things is to just
> 
>     cd
>     mkdir src
>     cd src
>     git clone git://github.com/gitster/git
>     cd git
>     make
>     make install
> 
> all as a regular user. It will install in your $(HOME)/bin, so just
> put that first in the path. No need to fight rpm, no need to fight
> your scripts, you should be pretty much all done.

Nice, for some reason I thought it would do the horrible /usr/local/
thing, and get all messed up with the installed version.

Ok, now done, so much for fighting with rpm, thanks, that made my day.

greg k-h

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-01-31  1:13 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-30 21:12 [GIT PATCH] TTY/serial patches for 3.3-rc1 Greg KH
2012-01-30 23:19 ` Linus Torvalds
2012-01-30 23:20   ` Linus Torvalds
2012-01-31  0:13     ` Greg KH
2012-01-31  0:27       ` Linus Torvalds
2012-01-31  1:11         ` Greg KH
2012-01-31  0:12   ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).