From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751535AbdAaSBX (ORCPT ); Tue, 31 Jan 2017 13:01:23 -0500 Received: from smtp.domeneshop.no ([194.63.252.55]:47225 "EHLO smtp.domeneshop.no" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751471AbdAaSBQ (ORCPT ); Tue, 31 Jan 2017 13:01:16 -0500 Subject: Re: [PATCH v3 1/7] drm: Add DRM support for tiny LCD displays To: Daniel Vetter References: <20170131160319.9695-1-noralf@tronnes.org> <20170131160319.9695-2-noralf@tronnes.org> <20170131162341.ejr2b3bq7tghafzj@phenom.ffwll.local> Cc: dri-devel@lists.freedesktop.org, devicetree@vger.kernel.org, thomas.petazzoni@free-electrons.com, linux-kernel@vger.kernel.org From: =?UTF-8?Q?Noralf_Tr=c3=b8nnes?= Message-ID: <1d854076-841a-7af3-36d2-eaf97b148388@tronnes.org> Date: Tue, 31 Jan 2017 19:01:10 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0 MIME-Version: 1.0 In-Reply-To: <20170131162341.ejr2b3bq7tghafzj@phenom.ffwll.local> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Den 31.01.2017 17.23, skrev Daniel Vetter: > On Tue, Jan 31, 2017 at 05:03:13PM +0100, Noralf Trønnes wrote: >> tinydrm provides helpers for very simple displays that can use >> CMA backed framebuffers and need flushing on changes. >> >> Signed-off-by: Noralf Trønnes >> Acked-by: Daniel Vetter > I spotted another tiny one, but yeah looks are supremely reasonable, ack > on all the drm parts. And please send a pull request for all of it as soon > as you have the dt acks. The first DOC section is just an overview and the second is how to use the core functionality. They are referenced separately in tinydrm.rst. At least they show up when I build htmldocs :-) Thanks Daniel. Noralf. > Cheers, Daniel > >> diff --git a/drivers/gpu/drm/tinydrm/core/tinydrm-core.c b/drivers/gpu/drm/tinydrm/core/tinydrm-core.c >> new file mode 100644 >> index 0000000..c0a2eb6 >> --- /dev/null >> +++ b/drivers/gpu/drm/tinydrm/core/tinydrm-core.c >> @@ -0,0 +1,377 @@ >> +/* >> + * Copyright (C) 2016 Noralf Trønnes >> + * >> + * This program is free software; you can redistribute it and/or modify >> + * it under the terms of the GNU General Public License as published by >> + * the Free Software Foundation; either version 2 of the License, or >> + * (at your option) any later version. >> + */ >> + >> +#include >> +#include >> +#include >> +#include >> +#include >> +#include >> + >> +/** >> + * DOC: overview > This kerneldoc DOC here isn't pulled into the .rst. I'd just merge it with > the one below.