-
Notifications
You must be signed in to change notification settings - Fork 105
Edac: Add Phytium edac controller support #145
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This patch document the DT bindings for Phytium pe220x EDAC. Signed-off-by: yuanxia <yuanxia2073@phytium.com.cn> Signed-off-by: Zhu Honglei <zhuhonglei1714@phytium.com.cn> Signed-off-by: Lan Hengyu <lanhengyu1395@phytium.com.cn> Signed-off-by: Li Mingzhe <limingzhe1839@phytium.com.cn> Signed-off-by: Wang Yinfeng <wangyinfeng@phytium.com.cn>
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
Hi @yuanxia0927. Thanks for your PR. I'm waiting for a deepin-community member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Support for error detection and correction on the Phytium Pe220x family of SOCs. Signed-off-by: yuanxia <yuanxia2073@phytium.com.cn> Signed-off-by: Zhu Honglei <zhuhonglei1714@phytium.com.cn> Signed-off-by: Lan Hengyu <lanhengyu1395@phytium.com.cn> Signed-off-by: Li Mingzhe <limingzhe1839@phytium.com.cn> Signed-off-by: Wang Yinfeng <wangyinfeng@phytium.com.cn>
|
/ok-to-test |
deepin pr auto reviewThis patch adds support for the Phytium EDAC (Error Detection and |
This patch document the DT bindings for Phytium pe220x EDAC. Signed-off-by: yuanxia <yuanxia2073@phytium.com.cn> Signed-off-by: Zhu Honglei <zhuhonglei1714@phytium.com.cn> Signed-off-by: Lan Hengyu <lanhengyu1395@phytium.com.cn> Signed-off-by: Li Mingzhe <limingzhe1839@phytium.com.cn> Signed-off-by: Wang Yinfeng <wangyinfeng@phytium.com.cn> Link: #145 (cherry picked from commit fa3d4f8) Signed-off-by: Wentao Guan <guanwentao@uniontech.com>
Adapt edac_device_alloc_ctl_info() to changes in: commit 48bc886 Author: Jiri Slaby (SUSE) <jirislaby@kernel.org> Date: Tue Feb 13 12:20:48 2024 +0100 EDAC: Remove dynamic attributes from edac_device_alloc_ctl_info() Dynamic attributes are not passed from any caller of edac_device_alloc_ctl_info(). Drop this unused/untested functionality completely. Signed-off-by: Jiri Slaby (SUSE) <jirislaby@kernel.org> Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de> Link: https://lore.kernel.org/r/20240213112051.27715-5-jirislaby@kernel.org Signed-off-by: Borislav Petkov (AMD) <bp@alien8.de> Signed-off-by: Mingcong Bai <baimingcong@uniontech.com> Link: #145 (cherry picked from commit f489c5d) Signed-off-by: Wentao Guan <guanwentao@uniontech.com>
0edb555: platform: Make platform_driver::remove() return void cause build error, so convert .remove from int to void Log: drivers/edac/phytium_edac.c:470:19: error: initialization of ‘void (*)(struct platform_device *)’ from incompatible pointer type ‘int (*)(struct platform_device *)’ [-Werror=incompatible-pointer-types] 470 | .remove = phytium_edac_remove, | ^~~~~~~~~~~~~~~~~~~ drivers/edac/phytium_edac.c:470:19: note: (near initialization for ‘phytium_edac_driver.<anonymous>.remove’) Link: #145 (cherry picked from commit 3fe38b3) Signed-off-by: Wentao Guan <guanwentao@uniontech.com>
Support for error detection and correction on the Phytium Pe220x family of SOCs.