dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] drivers: Restore alignment and newline in Makefile
@ 2023-01-24 10:41 Geert Uytterhoeven
  2023-01-31 11:52 ` Greg Kroah-Hartman
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2023-01-24 10:41 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Jacek Lawrynowicz, Daniel Vetter
  Cc: Geert Uytterhoeven, linux-kernel, dri-devel

The introduction of drivers/accel/ broke alignment, and removed the
newline at the end of the file.  Fix all of that.

Fixes: 35b137630f08d913 ("accel/ivpu: Introduce a new DRM driver for Intel VPU")
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 drivers/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/Makefile b/drivers/Makefile
index f0972e2226c97cb5..9ea6eb3b5d7b7f17 100644
--- a/drivers/Makefile
+++ b/drivers/Makefile
@@ -189,4 +189,4 @@ obj-$(CONFIG_COUNTER)		+= counter/
 obj-$(CONFIG_MOST)		+= most/
 obj-$(CONFIG_PECI)		+= peci/
 obj-$(CONFIG_HTE)		+= hte/
-obj-$(CONFIG_DRM_ACCEL)	+= accel/
\ No newline at end of file
+obj-$(CONFIG_DRM_ACCEL)		+= accel/
-- 
2.34.1


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

* Re: [PATCH] drivers: Restore alignment and newline in Makefile
  2023-01-24 10:41 [PATCH] drivers: Restore alignment and newline in Makefile Geert Uytterhoeven
@ 2023-01-31 11:52 ` Greg Kroah-Hartman
  2023-01-31 11:55 ` Oded Gabbay
  2023-01-31 12:51 ` Jacek Lawrynowicz
  2 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2023-01-31 11:52 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Daniel Vetter, Jacek Lawrynowicz, dri-devel, linux-kernel

On Tue, Jan 24, 2023 at 11:41:45AM +0100, Geert Uytterhoeven wrote:
> The introduction of drivers/accel/ broke alignment, and removed the
> newline at the end of the file.  Fix all of that.
> 
> Fixes: 35b137630f08d913 ("accel/ivpu: Introduce a new DRM driver for Intel VPU")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
>  drivers/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/Makefile b/drivers/Makefile
> index f0972e2226c97cb5..9ea6eb3b5d7b7f17 100644
> --- a/drivers/Makefile
> +++ b/drivers/Makefile
> @@ -189,4 +189,4 @@ obj-$(CONFIG_COUNTER)		+= counter/
>  obj-$(CONFIG_MOST)		+= most/
>  obj-$(CONFIG_PECI)		+= peci/
>  obj-$(CONFIG_HTE)		+= hte/
> -obj-$(CONFIG_DRM_ACCEL)	+= accel/
> \ No newline at end of file
> +obj-$(CONFIG_DRM_ACCEL)		+= accel/
> -- 
> 2.34.1
> 


Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

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

* Re: [PATCH] drivers: Restore alignment and newline in Makefile
  2023-01-24 10:41 [PATCH] drivers: Restore alignment and newline in Makefile Geert Uytterhoeven
  2023-01-31 11:52 ` Greg Kroah-Hartman
@ 2023-01-31 11:55 ` Oded Gabbay
  2023-01-31 12:51 ` Jacek Lawrynowicz
  2 siblings, 0 replies; 4+ messages in thread
From: Oded Gabbay @ 2023-01-31 11:55 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Greg Kroah-Hartman, dri-devel, Jacek Lawrynowicz, linux-kernel,
	Daniel Vetter

On Tue, Jan 24, 2023 at 12:42 PM Geert Uytterhoeven
<geert+renesas@glider.be> wrote:
>
> The introduction of drivers/accel/ broke alignment, and removed the
> newline at the end of the file.  Fix all of that.
>
> Fixes: 35b137630f08d913 ("accel/ivpu: Introduce a new DRM driver for Intel VPU")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
>  drivers/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/Makefile b/drivers/Makefile
> index f0972e2226c97cb5..9ea6eb3b5d7b7f17 100644
> --- a/drivers/Makefile
> +++ b/drivers/Makefile
> @@ -189,4 +189,4 @@ obj-$(CONFIG_COUNTER)               += counter/
>  obj-$(CONFIG_MOST)             += most/
>  obj-$(CONFIG_PECI)             += peci/
>  obj-$(CONFIG_HTE)              += hte/
> -obj-$(CONFIG_DRM_ACCEL)        += accel/
> \ No newline at end of file
> +obj-$(CONFIG_DRM_ACCEL)                += accel/
> --
> 2.34.1
>
Reviewed-by: Oded Gabbay <ogabbay@kernel.org>

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

* Re: [PATCH] drivers: Restore alignment and newline in Makefile
  2023-01-24 10:41 [PATCH] drivers: Restore alignment and newline in Makefile Geert Uytterhoeven
  2023-01-31 11:52 ` Greg Kroah-Hartman
  2023-01-31 11:55 ` Oded Gabbay
@ 2023-01-31 12:51 ` Jacek Lawrynowicz
  2 siblings, 0 replies; 4+ messages in thread
From: Jacek Lawrynowicz @ 2023-01-31 12:51 UTC (permalink / raw)
  To: Geert Uytterhoeven, Greg Kroah-Hartman, Daniel Vetter
  Cc: linux-kernel, dri-devel

Applied to drm-misc-next.
Thanks.

On 24.01.2023 11:41, Geert Uytterhoeven wrote:
> The introduction of drivers/accel/ broke alignment, and removed the
> newline at the end of the file.  Fix all of that.
> 
> Fixes: 35b137630f08d913 ("accel/ivpu: Introduce a new DRM driver for Intel VPU")
> Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
> ---
>  drivers/Makefile | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/Makefile b/drivers/Makefile
> index f0972e2226c97cb5..9ea6eb3b5d7b7f17 100644
> --- a/drivers/Makefile
> +++ b/drivers/Makefile
> @@ -189,4 +189,4 @@ obj-$(CONFIG_COUNTER)		+= counter/
>  obj-$(CONFIG_MOST)		+= most/
>  obj-$(CONFIG_PECI)		+= peci/
>  obj-$(CONFIG_HTE)		+= hte/
> -obj-$(CONFIG_DRM_ACCEL)	+= accel/
> \ No newline at end of file
> +obj-$(CONFIG_DRM_ACCEL)		+= accel/

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

end of thread, other threads:[~2023-01-31 12:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-24 10:41 [PATCH] drivers: Restore alignment and newline in Makefile Geert Uytterhoeven
2023-01-31 11:52 ` Greg Kroah-Hartman
2023-01-31 11:55 ` Oded Gabbay
2023-01-31 12:51 ` Jacek Lawrynowicz

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