OLD | NEW |
1 /* | 1 /* |
2 * arch/arm/mach-tegra/devices.c | 2 * arch/arm/mach-tegra/devices.c |
3 * | 3 * |
4 * Copyright (C) 2010 Google, Inc. | 4 * Copyright (C) 2010 Google, Inc. |
5 * | 5 * |
6 * Author: | 6 * Author: |
7 * Colin Cross <ccross@android.com> | 7 * Colin Cross <ccross@android.com> |
8 * Erik Gilling <ccross@android.com> | 8 * Erik Gilling <ccross@android.com> |
9 * | 9 * |
10 * This software is licensed under the terms of the GNU General Public | 10 * This software is licensed under the terms of the GNU General Public |
(...skipping 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 }; | 513 }; |
514 | 514 |
515 struct platform_device tegra_i2s_device2 = { | 515 struct platform_device tegra_i2s_device2 = { |
516 .name = "tegra-i2s", | 516 .name = "tegra-i2s", |
517 .id = 1, | 517 .id = 1, |
518 .resource = i2s_resource2, | 518 .resource = i2s_resource2, |
519 .num_resources = ARRAY_SIZE(i2s_resource2), | 519 .num_resources = ARRAY_SIZE(i2s_resource2), |
520 }; | 520 }; |
521 | 521 |
522 struct platform_device tegra_spdif_device = { | 522 struct platform_device tegra_spdif_device = { |
523 » .name» » = "spdif_out", | 523 » .name» » = "tegra-spdif", |
524 .id = -1, | 524 .id = -1, |
525 .resource = spdif_resource, | 525 .resource = spdif_resource, |
526 .num_resources = ARRAY_SIZE(spdif_resource), | 526 .num_resources = ARRAY_SIZE(spdif_resource), |
527 }; | 527 }; |
528 | 528 |
529 struct platform_device tegra_das_device = { | 529 struct platform_device tegra_das_device = { |
530 .name = "tegra-das", | 530 .name = "tegra-das", |
531 .id = -1, | 531 .id = -1, |
532 .num_resources = ARRAY_SIZE(tegra_das_resources), | 532 .num_resources = ARRAY_SIZE(tegra_das_resources), |
533 .resource = tegra_das_resources, | 533 .resource = tegra_das_resources, |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
855 struct platform_device tegra_aes_device = { | 855 struct platform_device tegra_aes_device = { |
856 .name = "tegra-aes", | 856 .name = "tegra-aes", |
857 .id = -1, | 857 .id = -1, |
858 .resource = tegra_aes_resources, | 858 .resource = tegra_aes_resources, |
859 .num_resources = ARRAY_SIZE(tegra_aes_resources), | 859 .num_resources = ARRAY_SIZE(tegra_aes_resources), |
860 .dev = { | 860 .dev = { |
861 .dma_mask = &tegra_aes_dma_mask, | 861 .dma_mask = &tegra_aes_dma_mask, |
862 .coherent_dma_mask = DMA_BIT_MASK(32), | 862 .coherent_dma_mask = DMA_BIT_MASK(32), |
863 }, | 863 }, |
864 }; | 864 }; |
OLD | NEW |