lib: rpmi: Make RPMI drivers as non-experimental

As RPMI v1.0 specification is frozen, disable the
experimental tag for such RPMI drivers.

Signed-off-by: Rahul Pathak <rpathak@ventanamicro.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
Link: https://lore.kernel.org/r/20250618053854.2577299-2-rpathak@ventanamicro.com
Signed-off-by: Anup Patel <anup@brainfault.org>
This commit is contained in:
Rahul Pathak
2025-06-18 11:08:54 +05:30
committed by Anup Patel
parent a5fdef45db
commit c2671bb69f
7 changed files with 0 additions and 7 deletions

View File

@@ -370,5 +370,4 @@ static const struct fdt_match rpmi_cppc_match[] = {
const struct fdt_driver fdt_cppc_rpmi = { const struct fdt_driver fdt_cppc_rpmi = {
.match_table = rpmi_cppc_match, .match_table = rpmi_cppc_match,
.init = rpmi_cppc_cold_init, .init = rpmi_cppc_cold_init,
.experimental = true,
}; };

View File

@@ -359,5 +359,4 @@ static const struct fdt_match rpmi_hsm_match[] = {
const struct fdt_driver fdt_hsm_rpmi = { const struct fdt_driver fdt_hsm_rpmi = {
.match_table = rpmi_hsm_match, .match_table = rpmi_hsm_match,
.init = rpmi_hsm_cold_init, .init = rpmi_hsm_cold_init,
.experimental = true,
}; };

View File

@@ -819,7 +819,6 @@ struct fdt_mailbox fdt_mailbox_rpmi_shmem = {
.driver = { .driver = {
.match_table = rpmi_shmem_mbox_match, .match_table = rpmi_shmem_mbox_match,
.init = rpmi_shmem_mbox_init, .init = rpmi_shmem_mbox_init,
.experimental = true,
}, },
.xlate = fdt_mailbox_simple_xlate, .xlate = fdt_mailbox_simple_xlate,
}; };

View File

@@ -83,5 +83,4 @@ static const struct fdt_match clock_match[] = {
const struct fdt_driver fdt_mpxy_rpmi_clock = { const struct fdt_driver fdt_mpxy_rpmi_clock = {
.match_table = clock_match, .match_table = clock_match,
.init = mpxy_rpmi_mbox_init, .init = mpxy_rpmi_mbox_init,
.experimental = true,
}; };

View File

@@ -205,5 +205,4 @@ static const struct fdt_match sysmsi_match[] = {
const struct fdt_driver fdt_mpxy_rpmi_sysmsi = { const struct fdt_driver fdt_mpxy_rpmi_sysmsi = {
.match_table = sysmsi_match, .match_table = sysmsi_match,
.init = mpxy_rpmi_mbox_init, .init = mpxy_rpmi_mbox_init,
.experimental = true,
}; };

View File

@@ -138,5 +138,4 @@ static const struct fdt_match rpmi_reset_match[] = {
const struct fdt_driver fdt_reset_rpmi = { const struct fdt_driver fdt_reset_rpmi = {
.match_table = rpmi_reset_match, .match_table = rpmi_reset_match,
.init = rpmi_reset_init, .init = rpmi_reset_init,
.experimental = true,
}; };

View File

@@ -135,5 +135,4 @@ static const struct fdt_match rpmi_suspend_match[] = {
const struct fdt_driver fdt_suspend_rpmi = { const struct fdt_driver fdt_suspend_rpmi = {
.match_table = rpmi_suspend_match, .match_table = rpmi_suspend_match,
.init = rpmi_suspend_init, .init = rpmi_suspend_init,
.experimental = true,
}; };