From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: fbcon: Declare struct fb_info.fbcon_par as of type struct fbcon_par Date: Wed, 11 Feb 2026 16:28:47 +1000 Message-ID: In-Reply-To: <20260210094356.23645-1-tzimmermann@suse.de> References: <20260210094356.23645-1-tzimmermann@suse.de> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Mailer: Claude Code Patch Reviewer Overall Series Review Subject: fbcon: Declare struct fb_info.fbcon_par as of type struct fbcon_par Author: Thomas Zimmermann Patches: 2 Reviewed: 2026-02-11T16:28:47.401692 --- This is a single-patch series that improves type safety in the framebuffer console (fbcon) subsystem. The change is straightforward and beneficial - it converts the `fbcon_par` field in `struct fb_info` from a generic `void *` pointer to a properly typed `struct fbcon_par *` pointer. **Strengths:** - Improves type safety by replacing void pointer with specific struct pointer - Zero functional change - purely a type improvement - Minimal and focused scope - Already applied by maintainer **Overall Assessment:** This is a clean, simple type safety improvement that follows kernel best practices. The patch has been reviewed and applied by the maintainer (Helge Deller). --- Generated by Claude Code Patch Reviewer