Add this SFR compatible definition for the sam9x60 SoC and manage
its use in ohci-at91.c driver.
Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        struct regmap *regmap;
 
        regmap = syscon_regmap_lookup_by_compatible("atmel,sama5d2-sfr");
-       if (IS_ERR(regmap))
-               regmap = NULL;
+       if (IS_ERR(regmap)) {
+               regmap = syscon_regmap_lookup_by_compatible("microchip,sam9x60-sfr");
+               if (IS_ERR(regmap))
+                       regmap = NULL;
+       }
 
        return regmap;
 }