void __iomem *regs;
 };
 
-struct tegra_mc_client {
+struct tegra186_mc_client {
        const char *name;
        unsigned int sid;
        struct {
        } regs;
 };
 
-static const struct tegra_mc_client tegra186_mc_clients[] = {
+struct tegra186_mc {
+       struct memory_controller base;
+       struct device *dev;
+       void __iomem *regs;
+};
+
+static const struct tegra186_mc_client tegra186_mc_clients[] = {
        {
                .name = "ptcr",
                .sid = TEGRA186_SID_PASSTHROUGH,
 
 static int tegra186_mc_probe(struct platform_device *pdev)
 {
+       struct tegra186_mc *mc;
        struct resource *res;
-       struct tegra_mc *mc;
        unsigned int i;
        int err = 0;
 
        mc->dev = &pdev->dev;
 
        for (i = 0; i < ARRAY_SIZE(tegra186_mc_clients); i++) {
-               const struct tegra_mc_client *client = &tegra186_mc_clients[i];
+               const struct tegra186_mc_client *client = &tegra186_mc_clients[i];
                u32 override, security;
 
                override = readl(mc->regs + client->regs.override);