From nobody Sat Jul 25 03:46:49 2026 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 93E9127CB02 for ; Sat, 18 Jul 2026 22:27:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.137.202.133 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784413673; cv=none; b=lR3k4fxv8zC/GXw2hm9dohlpsO6CGCvDuCeQ17sKCkcG0IRBCPQf4nPXveSkCGecupVgVHbmVplK/1yezf8+MxOe/Gqnile3qTi10CT7kL59g0ulG7ArXBE6JQ9oCRsgUdzf+i+e0OsltEorn9FJFxGOAillrFgQ/cKrlTGHDT4= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784413673; c=relaxed/simple; bh=bV+JMnZjABvMbKqL4SRsvSMdgAhrpF0YvuqLeyveFqM=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=OpB22r8PDb2sbiHuJSQAi7V27GZCpbbvsuEQmE5BWp/bC0kSGLNvIwxi6PM3dD0vVsf6/wRj2BgxhRdQfQGyOpePxEE22JOfWucFHDwS8XCce04Zmf3sceAEVgcp3t9YcY5TK+stWSmg0LCPOorKbRlem0Gk+RtddEo0vmocJus= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org; spf=pass smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=lTIzhFDK; arc=none smtp.client-ip=198.137.202.133 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="lTIzhFDK" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=Content-Transfer-Encoding: MIME-Version:Message-ID:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:In-Reply-To:References; bh=Bba7adEoTXIxprp/nOk51E/wNSrBto9KIx8GxQmuu5M=; b=lTIzhFDKGaKO1Gpu/VwvoJgZOZ 1xOJhnwrFiDzWlpiGGEpX/Fvoa3SLx4AatMsdVq5tJQ+McFg8UoeE96FrE18iaMgqkix7TacPBTuD vT1JC3gP3vWAD1Scc/5DOkrQDroC4rIKyMULhjV2aRmxVQKXxcFxfFoZB+L3yh2Re1z+tTzn1z8AH KqtnMjDq5L6VoMpNziXltcEfOCrKbUCE3gPHYeATiNhEMIKRA6EdxyGJYLZL086JUx1+B9AjwYE+m 2cXz92fnEJWBaKF9Z/U/TwRwQSpktfMbF5fI9QlFGjhUugErI+6uRPuAXbI2s6FxJzV1ri2F1/bd7 GjEyROKQ==; Received: from [50.53.43.113] (helo=bombadil.infradead.org) by bombadil.infradead.org with esmtpsa (Exim 4.99.1 #2 (Red Hat Linux)) id 1wlDVc-00000004ZPm-2R1l; Sat, 18 Jul 2026 22:27:49 +0000 From: Randy Dunlap To: linux-kernel@vger.kernel.org Cc: Randy Dunlap Subject: [PATCH] vt: console: add missing kernel-doc comments Date: Sat, 18 Jul 2026 15:27:48 -0700 Message-ID: <20260718222748.2032675-1-rdunlap@infradead.org> X-Mailer: git-send-email 2.55.0 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Add missing comments to avoid kernel-doc warnings: Warning: ./include/linux/console_struct.h:58 struct member 'italic' not described in 'vc_state' Warning: ./include/linux/console_struct.h:58 struct member 'underline' not described in 'vc_state' Warning: ./include/linux/console_struct.h:58 struct member 'blink' not described in 'vc_state' Signed-off-by: Randy Dunlap --- Cc: Greg Kroah-Hartman include/linux/console_struct.h | 3 +++ 1 file changed, 3 insertions(+) --- linux-next-20260717.orig/include/linux/console_struct.h +++ linux-next-20260717/include/linux/console_struct.h @@ -37,6 +37,9 @@ enum vc_intensity { * @Gx_charset: what's G0/G1 slot set to (like GRAF_MAP, LAT1_MAP) * @charset: what character set to use (0=3DG0 or 1=3DG1) * @intensity: see enum vc_intensity for values + * @italic: characters are italicized + * @underline: characters are underlined + * @blink: characters blink * @reverse: reversed foreground/background colors * * These members are defined separately from struct vc_data as we save &