devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] of_mtd: Fix header file include guard
       [not found] ` <52972EEE.8070704-wIELUdCntIg@public.gmane.org>
@ 2013-11-29  8:11   ` Brian Norris
  2013-11-29  9:22     ` Rosenberger, Philipp
  0 siblings, 1 reply; 3+ messages in thread
From: Brian Norris @ 2013-11-29  8:11 UTC (permalink / raw)
  To: Rosenberger, Philipp
  Cc: linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Grant Likely, Rob Herring

+ device tree guys

Hi Grant/Rob,

It looks like this header is technically owned by you guys. Once we have
a proper submission, should I merge this sort of change through MTD, or
do one of you want to take care of it?

Hi Philpp,

Thanks for the patch! There are a few things to fix up though.

On Thu, Nov 28, 2013 at 11:53:39AM +0000, Rosenberger, Philipp wrote:
> It seems the include guard was copied from of_net.h.

Good catch.

Note that all patches require a "Signed-off-by" line in the patch
description, to signify (among other things) that this is your work and
that you are submitting it under the GPLv2 license. See
Documentation/SubmittingPatches (esp. point 12).

> ---
>  include/linux/of_mtd.h |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/linux/of_mtd.h b/include/linux/of_mtd.h
> index 6f10e93..cb32d9c 100644
> --- a/include/linux/of_mtd.h
> +++ b/include/linux/of_mtd.h
> @@ -7,7 +7,7 @@
>   */
> 
>  #ifndef __LINUX_OF_MTD_H
> -#define __LINUX_OF_NET_H
> +#define __LINUX_OF_MTD_H
> 
>  #ifdef CONFIG_OF_MTD
> 
> -- 1.7.9.5
> 
> XS Embedded GmbH
> Peterzeller Strasse 8
> D-78048 Villingen - Schwenningen
> 
> Telefon +49 (7721) 4060 - 428
> Fax     +49 (7721) 4060 - 499
> 
> www.xse.de
> Philipp.Rosenberger-wIELUdCntIg@public.gmane.org
> 
> :::::::::: based.on.visions ::::::::::
> 
> 
> XS Embedded GmbH
> Geschäftsführung: Michael Maier, Rainer Oder
> 
> Handelsregister: Amtsgericht Freiburg i.Br., HRB 705237
> Sitz der Gesellschaft: Peterzeller Strasse 8, 78048 Villingen-Schwenningen
> USt-Id Nummer: DE268786819
> 
> Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by return e-mail and destroy all copies of the original message.

This confidentiality notice is incongruous with sending patches to a
public mailing list, for inclusion in an open source project. This
message (combined with a lack of a Signed-off-by) means we cannot take
your patch. Please remove this footer and resubmit, with a CC to
linux-mtd-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org and devicetree-u79uwXL29TaiAVqoAR/hOA@public.gmane.org

Thanks,
Brian
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] of_mtd: Fix header file include guard
  2013-11-29  8:11   ` [PATCH] of_mtd: Fix header file include guard Brian Norris
@ 2013-11-29  9:22     ` Rosenberger, Philipp
       [not found]       ` <52985D12.6060901-wIELUdCntIg@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Rosenberger, Philipp @ 2013-11-29  9:22 UTC (permalink / raw)
  To: Brian Norris
  Cc: Grant Likely, devicetree@vger.kernel.org,
	linux-mtd@lists.infradead.org, Rob Herring

Hi Brian,

Thanks for your replay and all the hints about submitting the correct
way. Is it ok to paste the full git format-patch output like this?

>From a2e84efe0d5335547ca3e6c0a8bf8a026b0f2353 Mon Sep 17 00:00:00 2001
From: Philipp Rosenberger <philipp.rosenberger@xse.de>
Date: Thu, 28 Nov 2013 12:36:52 +0100
Subject: [PATCH] of_mtd: Fix header file include guard

It seems the include guard was copied from of_net.h.

Signed-off-by: Philipp Rosenberger <philipp.rosenberger@xse.de>
---
 include/linux/of_mtd.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/of_mtd.h b/include/linux/of_mtd.h
index 6f10e93..cb32d9c 100644
--- a/include/linux/of_mtd.h
+++ b/include/linux/of_mtd.h
@@ -7,7 +7,7 @@
  */

 #ifndef __LINUX_OF_MTD_H
-#define __LINUX_OF_NET_H
+#define __LINUX_OF_MTD_H

 #ifdef CONFIG_OF_MTD

--
1.7.9.5

On 29.11.2013 09:11, Brian Norris wrote:
> + device tree guys
>
> Hi Grant/Rob,
>
> It looks like this header is technically owned by you guys. Once we have
> a proper submission, should I merge this sort of change through MTD, or
> do one of you want to take care of it?
>
> Hi Philpp,
>
> Thanks for the patch! There are a few things to fix up though.
>
> On Thu, Nov 28, 2013 at 11:53:39AM +0000, Rosenberger, Philipp wrote:
>> It seems the include guard was copied from of_net.h.
>
> Good catch.
>
> Note that all patches require a "Signed-off-by" line in the patch
> description, to signify (among other things) that this is your work and
> that you are submitting it under the GPLv2 license. See
> Documentation/SubmittingPatches (esp. point 12).
>
>> ---
>>  include/linux/of_mtd.h |    2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/include/linux/of_mtd.h b/include/linux/of_mtd.h
>> index 6f10e93..cb32d9c 100644
>> --- a/include/linux/of_mtd.h
>> +++ b/include/linux/of_mtd.h
>> @@ -7,7 +7,7 @@
>>   */
>>
>>  #ifndef __LINUX_OF_MTD_H
>> -#define __LINUX_OF_NET_H
>> +#define __LINUX_OF_MTD_H
>>
>>  #ifdef CONFIG_OF_MTD
>>
>> -- 1.7.9.5
>>
>> XS Embedded GmbH
>> Peterzeller Strasse 8
>> D-78048 Villingen - Schwenningen
>>
>> Telefon +49 (7721) 4060 - 428
>> Fax     +49 (7721) 4060 - 499
>>
>> www.xse.de
>> Philipp.Rosenberger@xse.de
>>
>> :::::::::: based.on.visions ::::::::::
>>
>>
>> XS Embedded GmbH
>> Geschäftsführung: Michael Maier, Rainer Oder
>>
>> Handelsregister: Amtsgericht Freiburg i.Br., HRB 705237
>> Sitz der Gesellschaft: Peterzeller Strasse 8, 78048 Villingen-Schwenningen
>> USt-Id Nummer: DE268786819
>>
>> Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by return e-mail and destroy all copies of the original message.
>
> This confidentiality notice is incongruous with sending patches to a
> public mailing list, for inclusion in an open source project. This
> message (combined with a lack of a Signed-off-by) means we cannot take
> your patch. Please remove this footer and resubmit, with a CC to
> linux-mtd@infradead.org and devicetree@vger.kernel.org.
>
> Thanks,
> Brian
>
>

Thank you for this hint. I forgot that the mailserver append this
footer. I hope now there is no company footer anymore.

Best regards

Philipp




______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

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

* Re: [PATCH] of_mtd: Fix header file include guard
       [not found]       ` <52985D12.6060901-wIELUdCntIg@public.gmane.org>
@ 2013-12-02 19:55         ` Brian Norris
  0 siblings, 0 replies; 3+ messages in thread
From: Brian Norris @ 2013-12-02 19:55 UTC (permalink / raw)
  To: Rosenberger, Philipp
  Cc: linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
	devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Grant Likely,
	Rob Herring

Hi Philipp,

On Fri, Nov 29, 2013 at 09:22:44AM +0000, Rosenberger, Philipp wrote:
> Thanks for your replay and all the hints about submitting the correct
> way. Is it ok to paste the full git format-patch output like this?
> 
> From a2e84efe0d5335547ca3e6c0a8bf8a026b0f2353 Mon Sep 17 00:00:00 2001
> From: Philipp Rosenberger <philipp.rosenberger-wIELUdCntIg@public.gmane.org>
> Date: Thu, 28 Nov 2013 12:36:52 +0100
> Subject: [PATCH] of_mtd: Fix header file include guard
> 
> It seems the include guard was copied from of_net.h.
> 
> Signed-off-by: Philipp Rosenberger <philipp.rosenberger-wIELUdCntIg@public.gmane.org>
> ---
>  include/linux/of_mtd.h |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/linux/of_mtd.h b/include/linux/of_mtd.h
> index 6f10e93..cb32d9c 100644
> --- a/include/linux/of_mtd.h
> +++ b/include/linux/of_mtd.h
> @@ -7,7 +7,7 @@
>   */
> 
>  #ifndef __LINUX_OF_MTD_H
> -#define __LINUX_OF_NET_H
> +#define __LINUX_OF_MTD_H
> 
>  #ifdef CONFIG_OF_MTD
> 
> --
> 1.7.9.5

That's workable for me, but that's not quite the standard way. The
git-format-patch output is meant to be mailed directly (via
git-send-email, for instance), not pasted into another email. If you
paste it, then git-am will see two sets of email headers and may not
understand it.

> On 29.11.2013 09:11, Brian Norris wrote:
> > + device tree guys
> >
> > Hi Grant/Rob,
> >
> > It looks like this header is technically owned by you guys. Once we have
> > a proper submission, should I merge this sort of change through MTD, or
> > do one of you want to take care of it?

Unless someone complains soon, I'll take this via MTD. No one else
should be creating conflicts on this file anyway.

...
> >> Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by return e-mail and destroy all copies of the original message.
> >
> > This confidentiality notice is incongruous with sending patches to a
> > public mailing list, for inclusion in an open source project. This
> > message (combined with a lack of a Signed-off-by) means we cannot take
> > your patch. Please remove this footer and resubmit, with a CC to
> > linux-mtd-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org and devicetree-u79uwXL29TaiAVqoAR/hOA@public.gmane.org
> >
> > Thanks,
> > Brian
> >
> >
> 
> Thank you for this hint. I forgot that the mailserver append this
> footer. I hope now there is no company footer anymore.

Looks good now. Thanks.

Pushed to l2-mtd.git.

Brian
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

end of thread, other threads:[~2013-12-02 19:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <52972EEE.8070704@xse.de>
     [not found] ` <52972EEE.8070704-wIELUdCntIg@public.gmane.org>
2013-11-29  8:11   ` [PATCH] of_mtd: Fix header file include guard Brian Norris
2013-11-29  9:22     ` Rosenberger, Philipp
     [not found]       ` <52985D12.6060901-wIELUdCntIg@public.gmane.org>
2013-12-02 19:55         ` Brian Norris

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).