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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 22BB0C43334 for ; Sat, 25 Jun 2022 07:10:06 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 84E11843A9; Sat, 25 Jun 2022 09:10:04 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=denx.de Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1656141004; bh=y/3Iamei/rIZYDUI5MYwFkXAxgr+WOv324sPRdko5n4=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From; b=cQuNg9YtQFFOVVnapmLhmox8Yv+rFwVypMAjeX4oQjOZ0o5qW4kl36OJTY9/52czw rmb1o9Ywf8RVgVXcSN5Yab/TDJeAOLEriUbl24iQ9QghYk3p6JJkIANjc7CVKEPHKr Xla/cLk2wa/AacC9JcegQxTx4DaoT58GJlJhRDF2Df7PuNXJclrpJvVqtiU/9WARlh FlvEyKKQolOMt+xalm2tr00rqdLufe+G+7QsrmQ4l+sYWJ/GxuhcaomV5BmG8wg/bb dnww8pbM6zZP/Oh4TOd1qcAJmmDhOhEE0Yoqb9Vh6/J27TcsQayvLBbVEFOcZgQG5G XzAPHe2nxnfpA== Received: from crub (p54833d91.dip0.t-ipconnect.de [84.131.61.145]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: agust@denx.de) by phobos.denx.de (Postfix) with ESMTPSA id 19B048431B; Sat, 25 Jun 2022 09:10:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=denx.de; s=phobos-20191101; t=1656141003; bh=y/3Iamei/rIZYDUI5MYwFkXAxgr+WOv324sPRdko5n4=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=UdsmwDRfXbNWWjjBbJNoFyidWo9raOL851FOxe7mive97SnO1MmQv+rwhRIIuUNzT 8ESSqWz8gNG1rbymqJdRvvnvH5tzBjptgjLGU0Em0Fwj2iCQZTpKCn6pVzLSNPu/4b fQHqvqWhATZHt9AbKfRXG3KudZPrAfXIkLwHL3OHfTwKx5x+IOaFG4odLsjWtALo4r pwFMXvu3mgm99NTezEIcGZV0OiDQAnAbRhrWjJbhEiVN3vPuMw51xHjxnZh5kslSS3 Rr1eYQjIjkR5Z9Ute7c3+wcSmZxtr3krb8tL4LZBCbqiWTp5AaSkH9NifbA6RBAIYP BqxQUfqWPtjeQ== Date: Sat, 25 Jun 2022 09:10:02 +0200 From: Anatolij Gustschin To: Andrew Scull Cc: u-boot@lists.denx.de, Simon Glass Subject: Re: [PATCH v2] sandbox: sdl: Add stub sandbox_sdl_remove_display() Message-ID: <20220625091002.13162ea4@crub> In-Reply-To: <20220323202037.1397214-1-ascull@google.com> References: <20220323202037.1397214-1-ascull@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean On Wed, 23 Mar 2022 20:20:37 +0000 Andrew Scull ascull@google.com wrote: > Building the sandbox with NO_SDL=1 resulted in an undefined reference to > 'sandbox_sdl_remove_display'. Resolve this by adding a stub > implementation to match the stubs of the other similar functions. > > Signed-off-by: Andrew Scull > Cc: Simon Glass > Cc: Anatolij Gustschin > Reviewed-by: Simon Glass > --- > arch/sandbox/include/asm/sdl.h | 5 +++++ > 1 file changed, 5 insertions(+) applied to u-boot-video/master, thanks! -- Anatolij