Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Side by Side Diff: arch/arm/mach-tegra/devices.c

Issue 6623023: CHROMIUM: ARM: tegra: Rename SPDIF platform device (Closed)
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 };
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698