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 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id CAB50C83F12 for ; Mon, 28 Aug 2023 14:51:20 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 1EB9B10E2EF; Mon, 28 Aug 2023 14:51:20 +0000 (UTC) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by gabe.freedesktop.org (Postfix) with ESMTPS id 3FA0110E2EF for ; Mon, 28 Aug 2023 14:51:18 +0000 (UTC) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id B57E96162A; Mon, 28 Aug 2023 14:51:17 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C95AFC433CA; Mon, 28 Aug 2023 14:51:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1693234277; bh=jD4VlYUlY+oZHcnEYNohEuUlkOxYBChf3b8erligfko=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=NyWkjMRYwpD/+JQu9WW3eC/E7J3M0AloIwVcs0Ge4WsZ9l2Ug1xbq5Fmw/p1N5JBx gEyZw8vuaaZGT6wjINFQGII45qSprCxb5CzPG1BqlTAUVxt/N7o0wgHuqVdrtKk1ax HsYVFMrouLkdkv8GSbRhEEokYaA/A0jp8K08IntI= Date: Mon, 28 Aug 2023 16:51:14 +0200 From: Greg KH To: Thomas Zimmermann Subject: Re: [PATCH 8/8] staging/fbtft: Use fb_ops helpers for deferred I/O Message-ID: <2023082805-gizmo-barrack-9467@gregkh> References: <20230828132131.29295-1-tzimmermann@suse.de> <20230828132131.29295-9-tzimmermann@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230828132131.29295-9-tzimmermann@suse.de> X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: linux-fbdev@vger.kernel.org, linux-hyperv@vger.kernel.org, deller@gmx.de, linux-staging@lists.linux.dev, javierm@redhat.com, dri-devel@lists.freedesktop.org, linux-input@vger.kernel.org, sam@ravnborg.org Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Mon, Aug 28, 2023 at 03:14:24PM +0200, Thomas Zimmermann wrote: > Generate callback functions for struct fb_ops with the fbdev macro > FB_GEN_DEFAULT_DEFERRED_SYSMEM_OPS(). Initialize struct fb_ops to > the generated functions with an fbdev initializer macro. > > Signed-off-by: Thomas Zimmermann Acked-by: Greg Kroah-Hartman