mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-01 16:14:13 +08:00
net: ipa: get rid of ipa->reg_addr
The reg_addr field in the IPA structure is set but never used. Get rid of it. Signed-off-by: Alex Elder <elder@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2df181f09c
commit
38028e6f39
@ -45,7 +45,6 @@ struct ipa_interrupt;
|
||||
* @interrupt: IPA Interrupt information
|
||||
* @uc_powered: true if power is active by proxy for microcontroller
|
||||
* @uc_loaded: true after microcontroller has reported it's ready
|
||||
* @reg_addr: DMA address used for IPA register access
|
||||
* @reg_virt: Virtual address used for IPA register access
|
||||
* @regs: IPA register definitions
|
||||
* @mem_addr: DMA address of IPA-local memory space
|
||||
@ -97,7 +96,6 @@ struct ipa {
|
||||
bool uc_powered;
|
||||
bool uc_loaded;
|
||||
|
||||
dma_addr_t reg_addr;
|
||||
void __iomem *reg_virt;
|
||||
const struct ipa_regs *regs;
|
||||
|
||||
|
@ -123,7 +123,6 @@ int ipa_reg_init(struct ipa *ipa)
|
||||
dev_err(dev, "unable to remap \"ipa-reg\" memory\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
ipa->reg_addr = res->start;
|
||||
ipa->regs = regs;
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user