net: ipa: get rid of a useless line of code
Delete a spurious line of code in ipa_hardware_config(). It reads a register value then ignores the value, so is completely unnecessary. Add a missing word in a comment. Signed-off-by: Alex Elder <elder@linaro.org> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
Родитель
5b8b2262b3
Коммит
49e3aeeb21
|
@ -335,7 +335,6 @@ static void ipa_hardware_config(struct ipa *ipa)
|
||||||
ipa_hardware_config_qsb(ipa);
|
ipa_hardware_config_qsb(ipa);
|
||||||
|
|
||||||
/* Configure aggregation granularity */
|
/* Configure aggregation granularity */
|
||||||
val = ioread32(ipa->reg_virt + IPA_REG_COUNTER_CFG_OFFSET);
|
|
||||||
granularity = ipa_aggr_granularity_val(IPA_AGGR_GRANULARITY);
|
granularity = ipa_aggr_granularity_val(IPA_AGGR_GRANULARITY);
|
||||||
val = u32_encode_bits(granularity, AGGR_GRANULARITY);
|
val = u32_encode_bits(granularity, AGGR_GRANULARITY);
|
||||||
iowrite32(val, ipa->reg_virt + IPA_REG_COUNTER_CFG_OFFSET);
|
iowrite32(val, ipa->reg_virt + IPA_REG_COUNTER_CFG_OFFSET);
|
||||||
|
@ -787,7 +786,7 @@ static int ipa_probe(struct platform_device *pdev)
|
||||||
if (ret)
|
if (ret)
|
||||||
goto err_mem_exit;
|
goto err_mem_exit;
|
||||||
|
|
||||||
/* Result is a non-zero mask endpoints that support filtering */
|
/* Result is a non-zero mask of endpoints that support filtering */
|
||||||
ipa->filter_map = ipa_endpoint_init(ipa, data->endpoint_count,
|
ipa->filter_map = ipa_endpoint_init(ipa, data->endpoint_count,
|
||||||
data->endpoint_data);
|
data->endpoint_data);
|
||||||
if (!ipa->filter_map) {
|
if (!ipa->filter_map) {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче