From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: accel/qda: Add Qualcomm DSP accelerator driver skeleton Date: Tue, 24 Feb 2026 18:20:11 +1000 Message-ID: In-Reply-To: <20260224-qda-firstpost-v1-2-fe46a9c1a046@oss.qualcomm.com> References: <20260224-qda-firstpost-v1-0-fe46a9c1a046@oss.qualcomm.com> <20260224-qda-firstpost-v1-2-fe46a9c1a046@oss.qualcomm.com> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Patch Review Adds an empty module with `pr_info` in init/exit. ```c +static int __init qda_core_init(void) +{ + pr_info("QDA: driver initialization complete\n"); + return 0; +} ``` - As Bjorn said: "This print is useless as soon as you make the driver do a= nything" and "this patch doesn't actually do anything, please squash things= a bit to give it some meat." Agreed =E2=80=94 this should be squashed into= the next patch(es) that actually add functionality. - Missing newline at end of `drivers/accel/Makefile`: ``` obj-$(CONFIG_DRM_ACCEL_ROCKET) +=3D rocket/ \ No newline at end of file ``` --- Generated by Claude Code Patch Reviewer