mc.c (0de93c698587cfaf1ec36d4c78fb9c6a76544390) | mc.c (7355c7b9ae0d45923bac088bc1faebd5e9a66164) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Copyright (C) 2014 NVIDIA CORPORATION. All rights reserved. 4 */ 5 6#include <linux/clk.h> 7#include <linux/delay.h> 8#include <linux/dma-mapping.h> --- 25 unchanged lines hidden (view full) --- 34 { .compatible = "nvidia,tegra124-mc", .data = &tegra124_mc_soc }, 35#endif 36#ifdef CONFIG_ARCH_TEGRA_132_SOC 37 { .compatible = "nvidia,tegra132-mc", .data = &tegra132_mc_soc }, 38#endif 39#ifdef CONFIG_ARCH_TEGRA_210_SOC 40 { .compatible = "nvidia,tegra210-mc", .data = &tegra210_mc_soc }, 41#endif | 1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Copyright (C) 2014 NVIDIA CORPORATION. All rights reserved. 4 */ 5 6#include <linux/clk.h> 7#include <linux/delay.h> 8#include <linux/dma-mapping.h> --- 25 unchanged lines hidden (view full) --- 34 { .compatible = "nvidia,tegra124-mc", .data = &tegra124_mc_soc }, 35#endif 36#ifdef CONFIG_ARCH_TEGRA_132_SOC 37 { .compatible = "nvidia,tegra132-mc", .data = &tegra132_mc_soc }, 38#endif 39#ifdef CONFIG_ARCH_TEGRA_210_SOC 40 { .compatible = "nvidia,tegra210-mc", .data = &tegra210_mc_soc }, 41#endif |
42 { } | 42#ifdef CONFIG_ARCH_TEGRA_186_SOC 43 { .compatible = "nvidia,tegra186-mc", .data = &tegra186_mc_soc }, 44#endif 45#ifdef CONFIG_ARCH_TEGRA_194_SOC 46 { .compatible = "nvidia,tegra194-mc", .data = &tegra194_mc_soc }, 47#endif 48 { /* sentinel */ } |
43}; 44MODULE_DEVICE_TABLE(of, tegra_mc_of_match); 45 46static void tegra_mc_devm_action_put_device(void *data) 47{ 48 struct tegra_mc *mc = data; 49 50 put_device(mc->dev); --- 796 unchanged lines hidden --- | 49}; 50MODULE_DEVICE_TABLE(of, tegra_mc_of_match); 51 52static void tegra_mc_devm_action_put_device(void *data) 53{ 54 struct tegra_mc *mc = data; 55 56 put_device(mc->dev); --- 796 unchanged lines hidden --- |