diff options
author | Christophe Leroy <christophe.leroy@c-s.fr> | 2017-02-07 10:05:11 +0100 |
---|---|---|
committer | Scott Wood <oss@buserror.net> | 2017-04-30 01:26:54 -0500 |
commit | b54ea82f01282253c85eb7e2fd2b6c96f7a027d8 (patch) | |
tree | 5b9666808afb2bcc279cee0abea8f8ff369a1b2a /drivers/soc/fsl/qe/qe.c | |
parent | 8b8642af15ed14b9a7a34d3401afbcc274533e13 (diff) |
soc/fsl/qe: get rid of immrbar_virt_to_phys()
immrbar_virt_to_phys() is not used anymore
Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr>
Acked-by: Li Yang <pku.leo@gmail.com>
Signed-off-by: Scott Wood <oss@buserror.net>
Diffstat (limited to 'drivers/soc/fsl/qe/qe.c')
-rw-r--r-- | drivers/soc/fsl/qe/qe.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/soc/fsl/qe/qe.c b/drivers/soc/fsl/qe/qe.c index ade168f5328e..d9c04f588f7f 100644 --- a/drivers/soc/fsl/qe/qe.c +++ b/drivers/soc/fsl/qe/qe.c @@ -66,7 +66,7 @@ static unsigned int qe_num_of_snum; static phys_addr_t qebase = -1; -phys_addr_t get_qe_base(void) +static phys_addr_t get_qe_base(void) { struct device_node *qe; int ret; @@ -90,8 +90,6 @@ phys_addr_t get_qe_base(void) return qebase; } -EXPORT_SYMBOL(get_qe_base); - void qe_reset(void) { if (qe_immr == NULL) |