From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E430A48422B; Thu, 20 Aug 2026 17:46:26 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787247988; cv=none; b=eFKwjV2Qljk1Z9K/HFtBCJBShB7kCOMFMVLXU1EdnSoe9D1aqovDzMoNG598dDoQNLWzCEdxNX46R5q61kbVUv8twizkDoGKWCGVoOHCoV5bx9M6DnO+rlZn9+0ksT1Q3DfpIeN2ZKW9HOiBvSv1apyQkGfgHdGVE2QDdz0JDg4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787247988; c=relaxed/simple; bh=G/Ppnt+dE1h4zHEyV1CqGUiBI1XFF4z4NLeeI6eZ8fY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=AAELxYK+nKwh9ML7+WmRkCRqSMt/apCoOAtA4vwfin6bGPpkrdoFklnpZWrv6eaBmkT9p+SWltXRJxcp7Fr7z2game9AEj9Yxv3BdH0ZkztN4MfF8lKPm05/kWp6fKKI/sYkhNZEuJxenbyUsyhFtj2s5isfNBGMhffE6efv+oY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=TGLAbzP9; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="TGLAbzP9" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 4A58C1F00A3D; Thu, 20 Aug 2026 17:46:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1787247986; bh=Ti6j0HQhqblISGR9PTX1+FCh3JmzPnJM0ogK5Hn7HL0=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=TGLAbzP981dArEE3RbCDKQvuNRGUCbg/og5hgOkViFKJsJSp7IPo//CxXvElvpAIx oBlgtB99+l6MxIpK5EehWvyQb78o+mt+H0KVbr0EBRQQsc+lnC6J5AQ48yFmg56Xjd dh8ektG008GMHE14TJdnZrGoVagpa8R1VILSZu2g= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Andy Shevchenko , Hugo Villeneuve , Sasha Levin Subject: [PATCH 6.1 072/303] serial: max310x: replace bare use of unsigned with unsigned int (checkpatch) Date: Thu, 20 Aug 2026 16:53:28 +0200 Message-ID: <20260820145255.330350466@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260820145253.200766705@linuxfoundation.org> References: <20260820145253.200766705@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Hugo Villeneuve [ Upstream commit 79b69eb09cf5b6a77e621b2838b7e0d38113debb ] Fixes the following checkpatch warnings: WARNING: Prefer 'unsigned int' to bare use of 'unsigned' With this change, the affected functions now match the prototypes in struct gpio_chip. Reviewed-by: Andy Shevchenko Signed-off-by: Hugo Villeneuve Link: https://lore.kernel.org/r/20240118152213.2644269-16-hugo@hugovil.com Signed-off-by: Greg Kroah-Hartman Stable-dep-of: a483b1a91b33 ("serial: max310x: implement gpio_chip::get_direction()") Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- drivers/tty/serial/max310x.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- a/drivers/tty/serial/max310x.c +++ b/drivers/tty/serial/max310x.c @@ -1211,7 +1211,7 @@ static int __maybe_unused max310x_resume static SIMPLE_DEV_PM_OPS(max310x_pm_ops, max310x_suspend, max310x_resume); #ifdef CONFIG_GPIOLIB -static int max310x_gpio_get(struct gpio_chip *chip, unsigned offset) +static int max310x_gpio_get(struct gpio_chip *chip, unsigned int offset) { unsigned int val; struct max310x_port *s = gpiochip_get_data(chip); @@ -1222,7 +1222,7 @@ static int max310x_gpio_get(struct gpio_ return !!((val >> 4) & (1 << (offset % 4))); } -static void max310x_gpio_set(struct gpio_chip *chip, unsigned offset, int value) +static void max310x_gpio_set(struct gpio_chip *chip, unsigned int offset, int value) { struct max310x_port *s = gpiochip_get_data(chip); struct uart_port *port = &s->p[offset / 4].port; @@ -1231,7 +1231,7 @@ static void max310x_gpio_set(struct gpio value ? 1 << (offset % 4) : 0); } -static int max310x_gpio_direction_input(struct gpio_chip *chip, unsigned offset) +static int max310x_gpio_direction_input(struct gpio_chip *chip, unsigned int offset) { struct max310x_port *s = gpiochip_get_data(chip); struct uart_port *port = &s->p[offset / 4].port; @@ -1242,7 +1242,7 @@ static int max310x_gpio_direction_input( } static int max310x_gpio_direction_output(struct gpio_chip *chip, - unsigned offset, int value) + unsigned int offset, int value) { struct max310x_port *s = gpiochip_get_data(chip); struct uart_port *port = &s->p[offset / 4].port;