diff options
author | Konrad Dybcio <[email protected]> | 2023-08-11 14:15:31 +0200 |
---|---|---|
committer | Georgi Djakov <[email protected]> | 2023-08-22 15:07:33 +0300 |
commit | a18e26a58bf3d5d9582e52107a946b4e490e75f3 (patch) | |
tree | f473688cca82065b3832d2f0c774fae611847dfa | |
parent | edd13c04ff0d90ed152902a88f01f466c77a0cf9 (diff) |
interconnect: qcom: icc-rpmh: Retire DEFINE_QBCM
This helper has no users anymore. Kill it with heavy fire.
Signed-off-by: Konrad Dybcio <[email protected]>
Reviewed-by: Bjorn Andersson <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Georgi Djakov <[email protected]>
-rw-r--r-- | drivers/interconnect/qcom/bcm-voter.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/interconnect/qcom/bcm-voter.h b/drivers/interconnect/qcom/bcm-voter.h index 0f64c0bab2c0..b4d36e349f3c 100644 --- a/drivers/interconnect/qcom/bcm-voter.h +++ b/drivers/interconnect/qcom/bcm-voter.h @@ -12,14 +12,6 @@ #include "icc-rpmh.h" -#define DEFINE_QBCM(_name, _bcmname, _keepalive, ...) \ -static struct qcom_icc_bcm _name = { \ - .name = _bcmname, \ - .keepalive = _keepalive, \ - .num_nodes = ARRAY_SIZE(((struct qcom_icc_node *[]){ __VA_ARGS__ })), \ - .nodes = { __VA_ARGS__ }, \ -} - struct bcm_voter *of_bcm_voter_get(struct device *dev, const char *name); void qcom_icc_bcm_voter_add(struct bcm_voter *voter, struct qcom_icc_bcm *bcm); int qcom_icc_bcm_voter_commit(struct bcm_voter *voter); |