Since commit 
302c059f2e7b (QE: use subsys_initcall to init qe),
mpc85xx_qe_init() has done nothing apart from possibly emitting a
pr_err(). As part of reducing the amount of QE-related code in
arch/powerpc/ (and eventually support QE on other architectures),
remove this low-hanging fruit.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: Scott Wood <oss@buserror.net>
 #endif
 
 #ifdef CONFIG_QUICC_ENGINE
-void __init mpc85xx_qe_init(void)
-{
-       struct device_node *np;
-
-       np = of_find_compatible_node(NULL, NULL, "fsl,qe");
-       if (!np) {
-               np = of_find_node_by_name(NULL, "qe");
-               if (!np) {
-                       pr_err("%s: Could not find Quicc Engine node\n",
-                                       __func__);
-                       return;
-               }
-       }
-
-       if (!of_device_is_available(np)) {
-               of_node_put(np);
-               return;
-       }
-
-       of_node_put(np);
-
-}
-
 void __init mpc85xx_qe_par_io_init(void)
 {
        struct device_node *np;
 
        swiotlb_detect_4g();
 
        pr_info("%s board\n", ppc_md.name);
-
-       mpc85xx_qe_init();
 }
 
 static const struct of_device_id of_device_ids[] = {
 
 #endif /* CONFIG_CPM2 */
 
 #ifdef CONFIG_QUICC_ENGINE
-extern void mpc85xx_qe_init(void);
 extern void mpc85xx_qe_par_io_init(void);
 #else
-static inline void __init mpc85xx_qe_init(void) {}
 static inline void __init mpc85xx_qe_par_io_init(void) {}
 #endif
 
 
 {
        struct device_node *np;
 
-       mpc85xx_qe_init();
        mpc85xx_qe_par_io_init();
        mpc85xx_mds_reset_ucc_phys();
 
 
        fsl_pci_assign_primary();
 
 #ifdef CONFIG_QUICC_ENGINE
-       mpc85xx_qe_init();
        mpc85xx_qe_par_io_init();
 #if defined(CONFIG_UCC_GETH) || defined(CONFIG_SERIAL_QE)
        if (machine_is(p1025_rdb)) {
 
        fsl_pci_assign_primary();
 
 #ifdef CONFIG_QUICC_ENGINE
-       mpc85xx_qe_init();
        mpc85xx_qe_par_io_init();
 
 #if IS_ENABLED(CONFIG_UCC_GETH) || IS_ENABLED(CONFIG_SERIAL_QE)