From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: fbdev: defio: Remove duplicate include of linux/module.h Date: Tue, 28 Apr 2026 13:38:43 +1000 Message-ID: In-Reply-To: <20260428031725.1013103-1-nichen@iscas.ac.cn> References: <20260428031725.1013103-1-nichen@iscas.ac.cn> <20260428031725.1013103-1-nichen@iscas.ac.cn> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Patch Review **Status: Correct, no issues.** The file had `#include ` in two places: 1. Line 11 (retained =E2=80=94 first in the include block) 2. Line 17 between `mm.h` and `vmalloc.h` (removed by this patch) The removed line: ```c -#include ``` The remaining include at line 11 is sufficient =E2=80=94 the file uses `THI= S_MODULE` (lines 113, 122, 369) and `try_module_get()`/`module_put()`, all = of which are provided by `linux/module.h`. The commit message is accurate and the Signed-off-by is present. **Reviewed-by: appropriate to give.** This is a straightforward, obviously = correct cleanup. --- Generated by Claude Code Patch Reviewer