Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CCF1CC38142 for ; Tue, 31 Jan 2023 11:52:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231853AbjAaLwU (ORCPT ); Tue, 31 Jan 2023 06:52:20 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49252 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229962AbjAaLwS (ORCPT ); Tue, 31 Jan 2023 06:52:18 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 7F0C7101 for ; Tue, 31 Jan 2023 03:52:17 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 19E5B614D5 for ; Tue, 31 Jan 2023 11:52:17 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 28AC4C433D2; Tue, 31 Jan 2023 11:52:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1675165936; bh=TkDgebvBcy1nAPBeWdAqve5nYhA8Jlh68COgNvMgJq8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=fEw/isx6nokL5MQajzj0UenWpA26QRuZ9I9TS7D7SPAGyG8zFlRvvnkNHwRsBZUhB Bv5NamFV1ZUxxQdxm4mdYEWV6Bsu9zZ7z41P1nX1WYFElOVcDCIlPacUqvdgD9yv9x PhvaZcAKTM2D9vSiSBtl8SblcXIROWm5J4arqWiY= Date: Tue, 31 Jan 2023 12:52:13 +0100 From: Greg Kroah-Hartman To: Geert Uytterhoeven Cc: Jacek Lawrynowicz , Daniel Vetter , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] drivers: Restore alignment and newline in Makefile Message-ID: References: <20230124104145.3962497-1-geert+renesas@glider.be> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230124104145.3962497-1-geert+renesas@glider.be> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 > --- > 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