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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E63F4C6FA86 for ; Mon, 26 Sep 2022 10:20:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235182AbiIZKUb (ORCPT ); Mon, 26 Sep 2022 06:20:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:42942 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235147AbiIZKSM (ORCPT ); Mon, 26 Sep 2022 06:18:12 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2C2C53FA3F; Mon, 26 Sep 2022 03:15:15 -0700 (PDT) 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 ams.source.kernel.org (Postfix) with ESMTPS id 47AE6B80924; Mon, 26 Sep 2022 10:15:13 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7BC24C433D6; Mon, 26 Sep 2022 10:15:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1664187312; bh=lacPAtZsEPiZpm46yptQlJb7OhqxDdXtZKNT0DH6wYo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=GrQmEAPw9BgBAhWrgXRJ6R41JBnXBbydc+dAFUwg6+UuPlTH2OMkz/QOT0cu8CnHe GofiqtMkSAWrmIiTi1Un9bUh75ozcKxr8df0XvJzCtKBBjEYdZL7UzV4gCYeczKh2Q pah/eRaguKe13dJTyEIqqfWSTIKWCdYBmW21+FsA= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Xiang wangx , Helge Deller , Sasha Levin Subject: [PATCH 4.9 04/30] video: fbdev: skeletonfb: Fix syntax errors in comments Date: Mon, 26 Sep 2022 12:11:35 +0200 Message-Id: <20220926100736.313886468@linuxfoundation.org> X-Mailer: git-send-email 2.37.3 In-Reply-To: <20220926100736.153157100@linuxfoundation.org> References: <20220926100736.153157100@linuxfoundation.org> User-Agent: quilt/0.67 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Xiang wangx [ Upstream commit fc378794a2f7a19cf26010dc33b89ba608d4c70f ] Delete the redundant word 'its'. Signed-off-by: Xiang wangx Signed-off-by: Helge Deller Signed-off-by: Sasha Levin --- drivers/video/fbdev/skeletonfb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/video/fbdev/skeletonfb.c b/drivers/video/fbdev/skeletonfb.c index f948baa16d82..254bb6e2187c 100644 --- a/drivers/video/fbdev/skeletonfb.c +++ b/drivers/video/fbdev/skeletonfb.c @@ -96,7 +96,7 @@ static struct fb_fix_screeninfo xxxfb_fix = { /* * Modern graphical hardware not only supports pipelines but some - * also support multiple monitors where each display can have its + * also support multiple monitors where each display can have * its own unique data. In this case each display could be * represented by a separate framebuffer device thus a separate * struct fb_info. Now the struct xxx_par represents the graphics -- 2.35.1