1
0
Fork 0

ath10k: copy the whole struct ath10k_bus_params in ath10k_core_register()

Instead of copying fields one by one copy the whole structure. This way there's
no need to modify the function every time we add a new field to the struct.

Compile tested only.

Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
hifive-unleashed-5.1
Kalle Valo 2019-02-11 18:48:13 +02:00
parent bdf2bd9aa6
commit 01dc76dfdc
1 changed files with 2 additions and 3 deletions

View File

@ -2997,9 +2997,8 @@ err:
int ath10k_core_register(struct ath10k *ar,
const struct ath10k_bus_params *bus_params)
{
ar->bus_param.chip_id = bus_params->chip_id;
ar->bus_param.dev_type = bus_params->dev_type;
ar->bus_param.link_can_suspend = bus_params->link_can_suspend;
ar->bus_param = *bus_params;
queue_work(ar->workqueue, &ar->register_work);
return 0;