linux-api.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Laura Abbott <labbott@redhat.com>
To: Benjamin Gaignard <benjamin.gaignard@linaro.org>,
	sumit.semwal@linaro.org, gregkh@linuxfoundation.org,
	arve@android.com, riandrews@android.com, broonie@kernel.org,
	dan.carpenter@oracle.com
Cc: devel@driverdev.osuosl.org, linux-api@vger.kernel.org,
	linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v6 1/2] staging: ion: reorder include
Date: Thu, 9 Nov 2017 13:02:59 -0800	[thread overview]
Message-ID: <42b0c9ca-36f2-4437-a50b-fdec984ea78c@redhat.com> (raw)
In-Reply-To: <1509983985-20950-2-git-send-email-benjamin.gaignard@linaro.org>

On 11/06/2017 07:59 AM, Benjamin Gaignard wrote:
> Put include in alphabetic order
> 

Acked-by: Laura Abbott <labbott@redhat.com>

> Signed-off-by: Benjamin Gaignard <benjamin.gaignard@linaro.org>
> ---
>   drivers/staging/android/ion/ion.c | 14 +++++++-------
>   1 file changed, 7 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/staging/android/ion/ion.c b/drivers/staging/android/ion/ion.c
> index a7d9b0e..fda9756 100644
> --- a/drivers/staging/android/ion/ion.c
> +++ b/drivers/staging/android/ion/ion.c
> @@ -15,28 +15,28 @@
>    *
>    */
>   
> +#include <linux/anon_inodes.h>
> +#include <linux/debugfs.h>
>   #include <linux/device.h>
> +#include <linux/dma-buf.h>
>   #include <linux/err.h>
> +#include <linux/export.h>
>   #include <linux/file.h>
>   #include <linux/freezer.h>
>   #include <linux/fs.h>
> -#include <linux/anon_inodes.h>
> +#include <linux/idr.h>
>   #include <linux/kthread.h>
>   #include <linux/list.h>
>   #include <linux/memblock.h>
>   #include <linux/miscdevice.h>
> -#include <linux/export.h>
>   #include <linux/mm.h>
>   #include <linux/mm_types.h>
>   #include <linux/rbtree.h>
> -#include <linux/slab.h>
> +#include <linux/sched/task.h>
>   #include <linux/seq_file.h>
> +#include <linux/slab.h>
>   #include <linux/uaccess.h>
>   #include <linux/vmalloc.h>
> -#include <linux/debugfs.h>
> -#include <linux/dma-buf.h>
> -#include <linux/idr.h>
> -#include <linux/sched/task.h>
>   
>   #include "ion.h"
>   
> 

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2017-11-09 21:02 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-06 15:59 [PATCH v6 0/2] staging: ion: get one device per heap Benjamin Gaignard
2017-11-06 15:59 ` [PATCH v6 1/2] staging: ion: reorder include Benjamin Gaignard
2017-11-09 21:02   ` Laura Abbott [this message]
2017-11-28 13:20   ` Greg KH
2017-11-28 13:34     ` Benjamin Gaignard
2017-11-28 13:40       ` Greg KH
2017-11-06 15:59 ` [PATCH v6 2/2] staging: ion: create one device entry per heap Benjamin Gaignard
2017-11-09 21:17   ` Laura Abbott
2017-11-27 10:46     ` Benjamin Gaignard
     [not found]       ` <CA+M3ks6vP+W77QBzbczxzcV7YZCoBusC=wgjZPUNLrCYFFDARA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-11-27 11:43         ` Greg Kroah-Hartman
2017-11-27 16:12           ` Daniel Vetter
2017-11-27 16:30             ` Mark Brown
2017-11-28 13:32   ` Greg KH
     [not found]     ` <20171128133217.GA29995-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2017-11-28 16:26       ` Mark Brown
2017-11-28 17:08         ` Greg KH
2017-11-28 17:12           ` Mark Brown
2017-11-28 17:28             ` Greg KH
2017-11-28 17:37               ` Mark Brown
2017-11-28 18:00                 ` Greg KH
2017-11-29 14:00     ` Benjamin Gaignard
2017-12-02 15:53       ` Greg KH
     [not found]         ` <20171202155317.GB5311-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2017-12-05 23:01           ` Laura Abbott
     [not found]             ` <65ef83b2-db3e-eaf6-129f-40e156400624-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2017-12-06  6:28               ` 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=42b0c9ca-36f2-4437-a50b-fdec984ea78c@redhat.com \
    --to=labbott@redhat.com \
    --cc=arve@android.com \
    --cc=benjamin.gaignard@linaro.org \
    --cc=broonie@kernel.org \
    --cc=dan.carpenter@oracle.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=riandrews@android.com \
    --cc=sumit.semwal@linaro.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).