From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-2.5 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_PASS,URIBL_BLOCKED,USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 98CBEC4360F for ; Thu, 4 Apr 2019 17:41:22 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 605D5206DD for ; Thu, 4 Apr 2019 17:41:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729158AbfDDRlV (ORCPT ); Thu, 4 Apr 2019 13:41:21 -0400 Received: from asavdk4.altibox.net ([109.247.116.15]:56794 "EHLO asavdk4.altibox.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726418AbfDDRlU (ORCPT ); Thu, 4 Apr 2019 13:41:20 -0400 Received: from ravnborg.org (unknown [158.248.194.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by asavdk4.altibox.net (Postfix) with ESMTPS id 67F5980444; Thu, 4 Apr 2019 19:41:15 +0200 (CEST) Date: Thu, 4 Apr 2019 19:41:14 +0200 From: Sam Ravnborg To: Gerd Hoffmann Cc: dri-devel@lists.freedesktop.org, David Airlie , open list , "open list:DRM DRIVER FOR QEMU'S CIRRUS DEVICE" , Dave Airlie Subject: Re: [PATCH v2 6/6] drm/cirrus: rewrite and modernize driver. Message-ID: <20190404174114.GG23897@ravnborg.org> References: <20190404152430.8263-1-kraxel@redhat.com> <20190404152430.8263-7-kraxel@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190404152430.8263-7-kraxel@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-CMAE-Score: 0 X-CMAE-Analysis: v=2.3 cv=UpRNyd4B c=1 sm=1 tr=0 a=UWs3HLbX/2nnQ3s7vZ42gw==:117 a=UWs3HLbX/2nnQ3s7vZ42gw==:17 a=jpOVt7BSZ2e4Z31A5e1TngXxSK0=:19 a=kj9zAlcOel0A:10 a=7gkXJVJtAAAA:8 a=ybZZDoGAAAAA:8 a=ZLT9alb5lSGOvR7llYYA:9 a=CjuIK1q_8ugA:10 a=E9Po1WZjFZOl8hwRPBS3:22 a=0RhZnL1DYvcuLYC8JZ5M:22 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Gerd. Very nice diffstat - good work indeed! > I think it'll still be alot easier to review than a > longish baby-step patch series. Agreed. Some random nits below. With the relevant parts addressed you can add my: Reviewed-by: Sam Ravnborg > new file mode 100644 > index 000000000000..5060e3d854d3 > --- /dev/null > +++ b/drivers/gpu/drm/cirrus/cirrus.c > @@ -0,0 +1,621 @@ > +/* > + * Copyright 2012-2019 Red Hat > + * > + * This file is subject to the terms and conditions of the GNU General > + * Public License version 2. See the file COPYING in the main > + * directory of this archive for more details. > + * > + * Authors: Matthew Garrett > + * Dave Airlie > + * Gerd Hoffmann > + * > + * Portions of this code derived from cirrusfb.c: > + * drivers/video/cirrusfb.c - driver for Cirrus Logic chipsets > + * > + * Copyright 1999-2001 Jeff Garzik > + */ Can we introduce an SPDX identifier? (I am not good at the license stuff, so I cannot tell) > +#include > +#include > +#include > + > +#include