qcacmn: Rename is_target_pdev_id to is_host_pdev_id

It's more suitable that rename is_target_pdev_id to is_host_pdev_id.

Change-Id: I5ec8971ac564e1a26f1b544f9bc2cc08e29f949d
CRs-Fixed: 2627802
This commit is contained in:
hqu
2020-02-24 20:23:40 +08:00
committed by nshrivas
parent d188789876
commit e6d0730c6b
10 changed files with 24 additions and 24 deletions

View File

@@ -878,12 +878,12 @@ struct suspend_params {
* struct pdev_params - pdev set cmd parameter
* @param_id: parameter id
* @param_value: parameter value
* @is_target_pdev_id: indicate whether pdev_id is target pdev_id or not
* @is_host_pdev_id: indicate whether pdev_id is host pdev_id or not
*/
struct pdev_params {
uint32_t param_id;
uint32_t param_value;
bool is_target_pdev_id;
bool is_host_pdev_id;
};
/**