From mboxrd@z Thu Jan 1 00:00:00 1970 From: Claude Code Review Bot To: dri-devel-reviews@example.com Subject: Claude review: drm/bridge: cdns-dsi: Switch to atomic_create_state Date: Thu, 04 Jun 2026 15:45:43 +1000 Message-ID: In-Reply-To: <20260530-drm-no-more-bridge-reset-v1-74-875d828d31bc@kernel.org> References: <20260530-drm-no-more-bridge-reset-v1-0-875d828d31bc@kernel.org> <20260530-drm-no-more-bridge-reset-v1-74-875d828d31bc@kernel.org> X-Mailer: Claude Code Patch Reviewer Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Patch Review Converts cdns-dsi and fixes the error return: ```c - return NULL; + return ERR_PTR(-ENOMEM); ``` The old `atomic_reset` contract allowed returning NULL (though it was technically wrong -- the docs said to return ERR_PTR). The new `atomic_create_state` contract requires ERR_PTR. This fix is correct and necessary. No issues. --- Generated by Claude Code Patch Reviewer