From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: gpu: nova-core: rename module from nova_core to nova-core Date: Tue, 05 May 2026 10:17:59 +1000 Message-ID: In-Reply-To: <20260430-nova-exports-v1-3-7ca31664e983@nvidia.com> References: <20260430-nova-exports-v1-0-7ca31664e983@nvidia.com> <20260430-nova-exports-v1-3-7ca31664e983@nvidia.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review **Verdict: Clean and correct.** ```makefile -obj-$(CONFIG_NOVA_CORE) += nova_core.o +obj-$(CONFIG_NOVA_CORE) += nova-core.o + +nova-core-y := nova_core.o ``` This is the standard kbuild pattern for composite modules where the crate object name (`nova_core.o` from `nova_core.rs`) would collide with the module target name. The Kconfig help text update is correct. No issues. --- Generated by Claude Code Patch Reviewer