From: NeilBrown <neilb-l3A5Bk7waGM@public.gmane.org>
To: Nishanth Menon <nm-l0cyMroinI0@public.gmane.org>
Cc: Felipe Balbi <balbi-l0cyMroinI0@public.gmane.org>,
Greg KH
<gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>,
marcel-kz+m5ild9QBg9hUCZPvPmw@public.gmane.org,
gustavo-THi1TnShQwVAfugRpC6u6w@public.gmane.org,
johan.hedberg-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
jslaby-AlSwsSmVLrQ@public.gmane.org,
grant.likely-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org,
Linux Kernel Mailing List
<linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
linux-bluetooth-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-serial-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Linux OMAP Mailing List
<linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>
Subject: Re: [PATCH 10/13] tty: serial: omap: remove some dead code
Date: Thu, 24 Apr 2014 08:43:05 +1000 [thread overview]
Message-ID: <20140424084305.20c7f301@notabene.brown> (raw)
In-Reply-To: <5357DDA8.4040206-l0cyMroinI0@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 3550 bytes --]
On Wed, 23 Apr 2014 10:35:04 -0500 Nishanth Menon <nm-l0cyMroinI0@public.gmane.org> wrote:
> On 04/23/2014 09:58 AM, Felipe Balbi wrote:
> > nobody passes a DTR_gpio to this driver, so
> > this code is not necessary.
> >
> > Signed-off-by: Felipe Balbi <balbi-l0cyMroinI0@public.gmane.org>
> > ---
>
> Niel,
> this seems to revert the functionality introduced in
> commit 9574f36fb801035f6ab0fbb1b53ce2c12c17d100
> (OMAP/serial: Add support for driving a GPIO as DTR.)
>
> would you like to Ack this change?
I have a couple of out-of-tree drivers that use this support.
I hope to get back to working on that code one day and even get those drivers
upstream. So I would really prefer this code to remain if it isn't causing
any actual problems.
Of course, I can always re-submit it when I need it again, but that it just
extra work all around.
Sorry that I have pushed those drivers already, but sometimes life gets in
the way :-)
Thanks,
NeilBrown
>
> > drivers/tty/serial/omap-serial.c | 39 ---------------------------------------
> > 1 file changed, 39 deletions(-)
> >
> > diff --git a/drivers/tty/serial/omap-serial.c b/drivers/tty/serial/omap-serial.c
> > index b46aaf3..6654682 100644
> > --- a/drivers/tty/serial/omap-serial.c
> > +++ b/drivers/tty/serial/omap-serial.c
> > @@ -163,10 +163,6 @@ struct uart_omap_port {
> > u8 wakeups_enabled;
> > u32 features;
> >
> > - int DTR_gpio;
> > - int DTR_inverted;
> > - int DTR_active;
> > -
> > struct serial_rs485 rs485;
> > int rts_gpio;
> >
> > @@ -694,16 +690,6 @@ static void serial_omap_set_mctrl(struct uart_port *port, unsigned int mctrl)
> > serial_out(up, UART_MCR, up->mcr);
> > pm_runtime_mark_last_busy(up->dev);
> > pm_runtime_put_autosuspend(up->dev);
> > -
> > - if (gpio_is_valid(up->DTR_gpio) &&
> > - !!(mctrl & TIOCM_DTR) != up->DTR_active) {
> > - up->DTR_active = !up->DTR_active;
> > - if (gpio_cansleep(up->DTR_gpio))
> > - schedule_work(&up->qos_work);
> > - else
> > - gpio_set_value(up->DTR_gpio,
> > - up->DTR_active != up->DTR_inverted);
> > - }
> > }
> >
> > static void serial_omap_break_ctl(struct uart_port *port, int break_state)
> > @@ -847,9 +833,6 @@ static void serial_omap_uart_qos_work(struct work_struct *work)
> > qos_work);
> >
> > pm_qos_update_request(&up->pm_qos_request, up->latency);
> > - if (gpio_is_valid(up->DTR_gpio))
> > - gpio_set_value_cansleep(up->DTR_gpio,
> > - up->DTR_active != up->DTR_inverted);
> > }
> >
> > static void
> > @@ -1672,28 +1655,6 @@ static int serial_omap_probe(struct platform_device *pdev)
> > if (IS_ERR(base))
> > return PTR_ERR(base);
> >
> > - if (gpio_is_valid(omap_up_info->DTR_gpio) &&
> > - omap_up_info->DTR_present) {
> > - ret = devm_gpio_request(&pdev->dev, omap_up_info->DTR_gpio,
> > - "omap-serial");
> > - if (ret < 0)
> > - return ret;
> > - ret = gpio_direction_output(omap_up_info->DTR_gpio,
> > - omap_up_info->DTR_inverted);
> > - if (ret < 0)
> > - return ret;
> > - }
> > -
> > - if (gpio_is_valid(omap_up_info->DTR_gpio) &&
> > - omap_up_info->DTR_present) {
> > - up->DTR_gpio = omap_up_info->DTR_gpio;
> > - up->DTR_inverted = omap_up_info->DTR_inverted;
> > - } else {
> > - up->DTR_gpio = -EINVAL;
> > - }
> > -
> > - up->DTR_active = 0;
> > -
> > up->dev = &pdev->dev;
> > up->port.dev = &pdev->dev;
> > up->port.type = PORT_OMAP;
> >
>
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 828 bytes --]
next prev parent reply other threads:[~2014-04-23 22:43 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-23 14:58 [PATCH 01/13] tty_ldisc: add more limits to the @write_wakeup Felipe Balbi
2014-04-23 14:58 ` [PATCH 02/13] bluetooth: hci_ldisc: fix deadlock condition Felipe Balbi
2014-04-24 9:01 ` Andreas Bießmann
2014-04-23 14:58 ` [PATCH 03/13] Revert "serial: omap: unlock the port lock" Felipe Balbi
2014-04-23 14:58 ` [PATCH 04/13] serial: fix UART_IIR_ID Felipe Balbi
2014-04-23 14:58 ` [PATCH 05/13] tty: serial: add missing braces Felipe Balbi
2014-04-23 14:58 ` [PATCH 06/13] tty: serial: omap: switch over to devm_request_gpio Felipe Balbi
2014-04-23 14:58 ` [PATCH 07/13] tty: serial: omap: cleanup variable declarations Felipe Balbi
2014-04-23 14:58 ` [PATCH 08/13] tty: serial: omap: switch over to platform_get_resource Felipe Balbi
[not found] ` <1398265117-11793-8-git-send-email-balbi-l0cyMroinI0@public.gmane.org>
2014-04-23 15:27 ` Fabio Estevam
2014-04-23 15:49 ` Felipe Balbi
2014-04-23 14:58 ` [PATCH 09/13] tty: serial: omap: switch over to devm_ioremap_resource Felipe Balbi
2014-04-23 14:58 ` [PATCH 10/13] tty: serial: omap: remove some dead code Felipe Balbi
[not found] ` <1398265117-11793-10-git-send-email-balbi-l0cyMroinI0@public.gmane.org>
2014-04-23 15:26 ` Felipe Balbi
2014-04-23 15:35 ` Nishanth Menon
[not found] ` <5357DDA8.4040206-l0cyMroinI0@public.gmane.org>
2014-04-23 22:43 ` NeilBrown [this message]
[not found] ` <20140424084305.20c7f301-wvvUuzkyo1EYVZTmpyfIwg@public.gmane.org>
2014-04-23 23:01 ` Felipe Balbi
2014-04-24 0:13 ` NeilBrown
[not found] ` <20140424101329.02e6a62f-wvvUuzkyo1EYVZTmpyfIwg@public.gmane.org>
2014-04-24 1:21 ` Felipe Balbi
[not found] ` <20140424012100.GB13374-HgARHv6XitL9zxVx7UNMDg@public.gmane.org>
2014-04-24 1:41 ` NeilBrown
2014-04-24 1:43 ` Felipe Balbi
2014-04-24 2:24 ` NeilBrown
2014-04-24 14:19 ` One Thousand Gnomes
2014-04-25 9:34 ` NeilBrown
[not found] ` <20140425193412.7d32e429-wvvUuzkyo1EYVZTmpyfIwg@public.gmane.org>
2014-04-25 9:53 ` Yegor Yefremov
2014-04-25 11:40 ` One Thousand Gnomes
2014-04-25 11:47 ` One Thousand Gnomes
2014-04-23 14:58 ` [PATCH 11/13] tty: serial: omap: remove unneeded singlethread workqueue Felipe Balbi
2014-04-23 14:58 ` [PATCH 12/13] tty: serial: omap: fix Sparse warnings Felipe Balbi
[not found] ` <1398265117-11793-1-git-send-email-balbi-l0cyMroinI0@public.gmane.org>
2014-04-23 14:58 ` [PATCH 13/13] serial: 8250: add OMAP glue Felipe Balbi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140424084305.20c7f301@notabene.brown \
--to=neilb-l3a5bk7wagm@public.gmane.org \
--cc=balbi-l0cyMroinI0@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=grant.likely-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
--cc=gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org \
--cc=gustavo-THi1TnShQwVAfugRpC6u6w@public.gmane.org \
--cc=johan.hedberg-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=jslaby-AlSwsSmVLrQ@public.gmane.org \
--cc=linux-bluetooth-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-serial-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=marcel-kz+m5ild9QBg9hUCZPvPmw@public.gmane.org \
--cc=nm-l0cyMroinI0@public.gmane.org \
--cc=tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).