1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
9 #include <linux/errno.h>
10 #include <linux/types.h>
15 #if IS_ENABLED(CONFIG_QCOM_PBS)
16 int qcom_pbs_trigger_event(struct pbs_dev *pbs, u8 bitmap);
17 struct pbs_dev *get_pbs_client_device(struct device *client_dev);
19 static inline int qcom_pbs_trigger_event(struct pbs_dev *pbs, u8 bitmap)
24 static inline struct pbs_dev *get_pbs_client_device(struct device *client_dev)
26 return ERR_PTR(-ENODEV);