Linux USB
 help / color / mirror / Atom feed
From: Vladimir Stankovic <vladimir.stankovic@displaylink.com>
To: Greg KH <gregkh@linuxfoundation.org>
Cc: linux-kernel <linux-kernel@vger.kernel.org>,
	linux-usb <linux-usb@vger.kernel.org>,
	mausb-host-devel <mausb-host-devel@displaylink.com>
Subject: Re: [PATCH v3 1/8] usb: Add MA-USB Host kernel module
Date: Thu, 12 Mar 2020 17:23:53 +0100	[thread overview]
Message-ID: <a950d4e0-b9e6-ef44-9c83-35958154b36f@displaylink.com> (raw)
In-Reply-To: <20200312152037.GA383349@kroah.com>

On 12.3.20. 16:20, Greg KH wrote:
> On Thu, Mar 12, 2020 at 03:42:30PM +0100, Vladimir Stankovic wrote:
>  > Added utility macros, kernel device creation and cleanup, functions for
>  > handling log formatting and a placeholder module for MA-USB Host device
>  > driver.
>  >
>  > Signed-off-by: Vladimir Stankovic <vladimir.stankovic@displaylink.com>
>  > ---
>  > MAINTAINERS | 7 +++
>  > drivers/usb/Kconfig | 2 +
>  > drivers/usb/Makefile | 2 +
>  > drivers/usb/mausb_host/Kconfig | 14 +++++
>  > drivers/usb/mausb_host/Makefile | 12 ++++
>  > drivers/usb/mausb_host/mausb_core.c | 90 +++++++++++++++++++++++++++++
>  > drivers/usb/mausb_host/utils.c | 85 +++++++++++++++++++++++++++
>  > drivers/usb/mausb_host/utils.h | 40 +++++++++++++
>  > 8 files changed, 252 insertions(+)
>  > create mode 100644 drivers/usb/mausb_host/Kconfig
>  > create mode 100644 drivers/usb/mausb_host/Makefile
>  > create mode 100644 drivers/usb/mausb_host/mausb_core.c
>  > create mode 100644 drivers/usb/mausb_host/utils.c
>  > create mode 100644 drivers/usb/mausb_host/utils.h
>  >
>  > diff --git a/MAINTAINERS b/MAINTAINERS
>  > index 235ab38ed478..12aac44196d7 100644
>  > --- a/MAINTAINERS
>  > +++ b/MAINTAINERS
>  > @@ -10226,6 +10226,13 @@ W: https://linuxtv.org 
> <https://linuxtv.org>
>  > S: Maintained
>  > F: drivers/media/radio/radio-maxiradio*
>  > +MA USB HOST DRIVER
>  > +M: Vladimir Stankovic <vladimir.stankovic@displaylink.com>
>  > +L: mausb-host-devel@displaylink.com
>  > +W: https://www.displaylink.com 
> <https://www.displaylink.com>
>  > +S: Maintained
>  > +F: drivers/usb/mausb_host/*
>  > +
>  > MCAN MMIO DEVICE DRIVER
>  > M: Dan Murphy <dmurphy@ti.com>
>  > M: Sriram Dash <sriram.dash@samsung.com>
> 
> Does that patch look correct?
> 
> Does this apply?
> 
> Something is odd here :(
> 
> 
>  > diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig
>  > index 275568abc670..4e92f1fa0fa5 100644
>  > --- a/drivers/usb/Kconfig
>  > +++ b/drivers/usb/Kconfig
>  > @@ -164,6 +164,8 @@ source "drivers/usb/misc/Kconfig"
>  > source "drivers/usb/atm/Kconfig"
>  > +source "drivers/usb/mausb_host/Kconfig"
>  > +
>  > endif # USB
>  > source "drivers/usb/phy/Kconfig"
> 
> Yeah, something is really wrong with your email client :(
> 
> Can you use 'git send-email' to send all of these out so they do not get
> corrupted?
> 
> That will also fix the lack of email threading which this series still
> has as well.
> 
> thanks,
> 
> greg k-h
I'd say it's the issue with mail server used by company, since patches 
and mails were generated via git (i.e. used git imap-send to create mail 
drafts). One of the reasons we've sent attachments in the first version 
of the patch was to avoid weird mail client/server issues.

Anyhow, I've tried applying diffs from linux-usb mailthread and from 
patchwork, and that failed as expected, stating that patch is corrupt. 
However, comparison of those diffs with the .patch file generated with 
git, provided somewhat odd result: only first 30+ lines of the diff 
(mail headers excluded) contained additional space chars that are not 
part of the git-generated .patch files (specifically, a single space 
char is added at the start of each line that is not being modified by 
the patch itself; only Kconfig, Makefile, and MAINTAINERS are affected); 
the rest of the diff (new source code) matched with .patch file.

Been expecting "tabs vs spaces" issue that is specific to mail 
clients/servers, but this makes it a bit odd.

Will check if this issue (prepended single space chars) is already 
reported/fixed within the community.

Regards,
Vladimir.


  reply	other threads:[~2020-03-12 16:24 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-03-12 14:42 [PATCH v3 1/8] usb: Add MA-USB Host kernel module Vladimir Stankovic
2020-03-12 15:20 ` Greg KH
2020-03-12 16:23   ` Vladimir Stankovic [this message]
2020-03-12 16:32     ` Greg KH

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=a950d4e0-b9e6-ef44-9c83-35958154b36f@displaylink.com \
    --to=vladimir.stankovic@displaylink.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mausb-host-devel@displaylink.com \
    /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