#include <linux/of.h>
 #include <asm/hardware/cache-l2x0.h>
 
-struct l2x0_aux {
-       u32 val;
-       u32 mask;
-};
-
-static const struct l2x0_aux prima2_l2x0_aux __initconst = {
-       .val = L2C_AUX_CTRL_WAY_SIZE(2),
-       .mask = 0,
-};
-
-static const struct l2x0_aux marco_l2x0_aux __initconst = {
-       .val = L2C_AUX_CTRL_WAY_SIZE(2) | L310_AUX_CTRL_ASSOCIATIVITY_16,
-       .mask = L2X0_AUX_CTRL_MASK,
-};
-
 static const struct of_device_id sirf_l2x0_ids[] __initconst = {
        { .compatible = "sirf,prima2-pl310-cache", .data = &prima2_l2x0_aux, },
        { .compatible = "sirf,marco-pl310-cache", .data = &marco_l2x0_aux, },
 static int __init sirfsoc_l2x0_init(void)
 {
        struct device_node *np;
-       const struct l2x0_aux *aux;
 
        np = of_find_matching_node(NULL, sirf_l2x0_ids);
-       if (np) {
-               aux = of_match_node(sirf_l2x0_ids, np)->data;
-               return l2x0_of_init(aux->val, aux->mask);
-       }
+       if (np)
+               return l2x0_of_init(0, ~0);
 
        return 0;
 }