| b7996221 | 29-Dec-2025 |
Devanshi Chauhan <Devanshi.ChauhanAlpeshbhai@amd.com> |
fix(versal2): fix misra rule 8.4 violation
Fix below MISRA violation: - MISRA Violation: MISRA-C:2012 R.8.4: - A compatible declaration shall be visible when an object or function with externa
fix(versal2): fix misra rule 8.4 violation
Fix below MISRA violation: - MISRA Violation: MISRA-C:2012 R.8.4: - A compatible declaration shall be visible when an object or function with external linkage is defined. - Fix: - Declare pm_secure_lock as static to give it internal linkage.
Change-Id: Ie538b2382e214ee2a486259b4ecddc12082334fa Signed-off-by: Devanshi Chauhan <Devanshi.ChauhanAlpeshbhai@amd.com>
show more ...
|
| 866cfa8e | 24-Dec-2025 |
Devanshi Chauhan <Devanshi.ChauhanAlpeshbhai@amd.com> |
fix(versal2): fix misra rule 18.1 violations
Fix below MISRA violation: - MISRA Violation: MISRA-C:2012 R.18.1: - A pointer resulting from arithmetic on a pointer operand shall address an elem
fix(versal2): fix misra rule 18.1 violations
Fix below MISRA violation: - MISRA Violation: MISRA-C:2012 R.18.1: - A pointer resulting from arithmetic on a pointer operand shall address an element of the same array as that pointer operand. - Fix: - Add upper bounds check before array access to prevent buffer overrun.
Change-Id: I56e8201f2bf0de1d276d2ee009dafc73f08caf75 Signed-off-by: Devanshi Chauhan <Devanshi.ChauhanAlpeshbhai@amd.com>
show more ...
|
| de5c4451 | 03-Oct-2025 |
Devanshi Chauhan <devanshi.chauhan@amd.com> |
chore(xilinx): add deprecation warning to pm_feature_check
Add deprecation warning to pm_feature_check() function to inform users that this API will be removed in the 2027.1 release and they should
chore(xilinx): add deprecation warning to pm_feature_check
Add deprecation warning to pm_feature_check() function to inform users that this API will be removed in the 2027.1 release and they should migrate to tfa_api_feature_check() for TF-A specific feature checks.
This warning helps customers prepare for the upcoming API removal and encourages migration to the correct function.
Change-Id: Icab5eb6f1a552553b1cc1215aa683430733667bd Signed-off-by: Devanshi Chauhan <devanshi.chauhan@amd.com>
show more ...
|
| 325949f1 | 06-Feb-2025 |
Saivardhan Thatikonda <saivardhan.thatikonda@amd.com> |
fix(versal): switch case has only one confirming clause
This corrects the MISRA violation C2012-16.6: Use if statement when switch statement has only one clause. This helps to prevent other misra-c
fix(versal): switch case has only one confirming clause
This corrects the MISRA violation C2012-16.6: Use if statement when switch statement has only one clause. This helps to prevent other misra-c issue i.e., 16.1 and 16.3 and this doesn't affect the functionality of the code.
Change-Id: Ie4ce39abb450cc45303732ec48b5c2e4ef5561e4 Signed-off-by: Saivardhan Thatikonda <saivardhan.thatikonda@amd.com>
show more ...
|