From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-qk1-f180.google.com (mail-qk1-f180.google.com [209.85.222.180]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 619D16D32 for ; Thu, 15 Apr 2021 17:18:22 +0000 (UTC) Received: by mail-qk1-f180.google.com with SMTP id x11so25930183qkp.11 for ; Thu, 15 Apr 2021 10:18:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:from:to:cc:subject:message-id:mime-version:content-disposition :user-agent; bh=Q96K00hD2NjD86HPQFbde/I+2OWvsg2PMKdChk2z1WQ=; b=ddvqhdSlR4JBrqD26ZAbHTyS/jISDCdj0isRUj+pXvidKnZWtAKeoAweWjGkUGyXre 8QrqI69VUqRxqTjbm4P/4j8oWMQK3J1+D583o1BReRErogmSzebk8tnUQdu8VfD1N9Qw tfLUtjGTeXpkH2T/HKpZfODuzUCJeXWJ1gFOarOr4JUFKWANjLr07cuGNyQCuS68kfeb 6ZFijZIXXpGNRPLycR4T97CaAG7lwXcZ0gkhHozZbRFEyjrFhDZ1WmAKw3CUUllwhlvm xKzpfOXQ+R93vvDW0/R4HVtcbl9Av/+6E4CYVaZK0C2n1XHD6kD6kYKfi7nFsZtiHFk7 upUQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:mime-version :content-disposition:user-agent; bh=Q96K00hD2NjD86HPQFbde/I+2OWvsg2PMKdChk2z1WQ=; b=JIYAEyMb9Cpy3y35dMmKoSX+qPoh1rc61yYOAI0KIyrlNo8dRCqReNECbizja5kBoD 2sqSoALAsouyKhkBnAqFM/ekARrWlKxE8zwjobVEpF0/AzBiXIbYoBDYBTk2Kmk7TQwf xGB3Xbg/Euf8a3w+r/Bd97b9RizGQaVpsZuhfbrATBiGHlDJbY//5c5i31fuGUSPTuAh GnvuTw9jV32/sQLpDgebfa+VlvQp4ybdO/2dkooPop3aJ3PYQRQ3DGKMt2YLw4wkMFTg X2YVjtzruJgLrU+gXkSf/Q3XcKbAcR90lS4cBuB5FoN6RUPU5wOZvick/i9mDdB7Mdpa qlzw== X-Gm-Message-State: AOAM532883rKTbjrUS+vwGpQfHYC6MjWRtgTIWtAqc/aH+aC7O9nwusD C/WrIcOb49TaHJ6OsDkQ+KI= X-Google-Smtp-Source: ABdhPJzEeoGFvRA6C2GrN3MyutBLywjuX4YWpzv3eENExAZSRapqgaY2CO4cYEJvd2bDOBxm0Pjy8Q== X-Received: by 2002:a05:620a:a4b:: with SMTP id j11mr4754516qka.19.1618507101535; Thu, 15 Apr 2021 10:18:21 -0700 (PDT) Received: from focaruja ([2001:1284:f016:a037:fda3:4e59:60ec:90e5]) by smtp.gmail.com with ESMTPSA id c27sm2417598qtg.97.2021.04.15.10.18.20 (version=TLS1 cipher=ECDHE-ECDSA-AES128-SHA bits=128/128); Thu, 15 Apr 2021 10:18:21 -0700 (PDT) Date: Thu, 15 Apr 2021 14:18:18 -0300 From: Aline Santana Cordeiro To: Thierry Reding , Jonathan Hunter , Sowjanya Komatineni , Mauro Carvalho Chehab , Greg Kroah-Hartman Cc: linux-media@vger.kernel.org, linux-staging@lists.linux.dev, linux-kernel@vger.kernel.org, outreachy-kernel@googlegroups.com Subject: [PATCH v2] staging: media: tegra-video: Align line break to match with the open parenthesis in file vi.c Message-ID: <20210415171818.GA18601@focaruja> X-Mailing-List: linux-staging@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.24 (2015-08-30) Align line break to match with the open parenthesis. Issue detected by checkpatch.pl. Signed-off-by: Aline Santana Cordeiro --- Changes since v1: - Move short argument to the previous line in function call since it didn't exceeded 80 characters in line drivers/staging/media/tegra-video/vi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/media/tegra-video/vi.c b/drivers/staging/media/tegra-video/vi.c index 7a09061c..3f06d69 100644 --- a/drivers/staging/media/tegra-video/vi.c +++ b/drivers/staging/media/tegra-video/vi.c @@ -1812,8 +1812,8 @@ static int tegra_vi_graph_parse_one(struct tegra_vi_channel *chan, continue; } - tvge = v4l2_async_notifier_add_fwnode_subdev(&chan->notifier, - remote, struct tegra_vi_graph_entity); + tvge = v4l2_async_notifier_add_fwnode_subdev(&chan->notifier, remote, + struct tegra_vi_graph_entity); if (IS_ERR(tvge)) { ret = PTR_ERR(tvge); dev_err(vi->dev, -- 2.7.4