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

Side by Side Diff: arch/arm/mach-tegra/board-seaboard-power.c

Issue 6895005: [1/2] CHROMIUM: ARM: Tegra: Seaboard: Add vdd_dmic regulator consumer (Closed) Base URL: http://git.chromium.org/git/kernel-next.git@chromeos-2.6.37
Patch Set: Created 9 years, 8 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 | Annotate | Revision Log
« 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 * Copyright (C) 2010 NVIDIA, Inc. 2 * Copyright (C) 2010 NVIDIA, Inc.
3 * 3 *
4 * This program is free software; you can redistribute it and/or modify 4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as 5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation. 6 * published by the Free Software Foundation.
7 * 7 *
8 * This program is distributed in the hope that it will be useful, 8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of 9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 static struct regulator_consumer_supply tps658621_ldo4_supply[] = { 57 static struct regulator_consumer_supply tps658621_ldo4_supply[] = {
58 REGULATOR_SUPPLY("avdd_osc", NULL), 58 REGULATOR_SUPPLY("avdd_osc", NULL),
59 REGULATOR_SUPPLY("vddio_sys", "panjit_touch"), 59 REGULATOR_SUPPLY("vddio_sys", "panjit_touch"),
60 }; 60 };
61 static struct regulator_consumer_supply tps658621_ldo5_supply[] = { 61 static struct regulator_consumer_supply tps658621_ldo5_supply[] = {
62 REGULATOR_SUPPLY("vcore_mmc", "sdhci-tegra.1"), 62 REGULATOR_SUPPLY("vcore_mmc", "sdhci-tegra.1"),
63 REGULATOR_SUPPLY("vcore_mmc", "sdhci-tegra.3"), 63 REGULATOR_SUPPLY("vcore_mmc", "sdhci-tegra.3"),
64 }; 64 };
65 static struct regulator_consumer_supply tps658621_ldo6_supply[] = { 65 static struct regulator_consumer_supply tps658621_ldo6_supply[] = {
66 REGULATOR_SUPPLY("vddio_vi", NULL), 66 REGULATOR_SUPPLY("vddio_vi", NULL),
67 REGULATOR_SUPPLY("vdd_dmic", NULL),
67 }; 68 };
68 static struct regulator_consumer_supply tps658621_ldo7_supply[] = { 69 static struct regulator_consumer_supply tps658621_ldo7_supply[] = {
69 REGULATOR_SUPPLY("avdd_hdmi", NULL), 70 REGULATOR_SUPPLY("avdd_hdmi", NULL),
70 REGULATOR_SUPPLY("vdd_fuse", NULL), 71 REGULATOR_SUPPLY("vdd_fuse", NULL),
71 }; 72 };
72 static struct regulator_consumer_supply tps658621_ldo8_supply[] = { 73 static struct regulator_consumer_supply tps658621_ldo8_supply[] = {
73 REGULATOR_SUPPLY("avdd_hdmi_pll", NULL), 74 REGULATOR_SUPPLY("avdd_hdmi_pll", NULL),
74 }; 75 };
75 static struct regulator_consumer_supply tps658621_ldo9_supply[] = { 76 static struct regulator_consumer_supply tps658621_ldo9_supply[] = {
76 REGULATOR_SUPPLY("avdd_2v85", NULL), 77 REGULATOR_SUPPLY("avdd_2v85", NULL),
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 pr_warning("Unable to initialize regulator\n"); 306 pr_warning("Unable to initialize regulator\n");
306 307
307 err = seaboard_ac_power_init(); 308 err = seaboard_ac_power_init();
308 if (err < 0) 309 if (err < 0)
309 pr_warning("Unable to initialize ac power\n"); 310 pr_warning("Unable to initialize ac power\n");
310 311
311 pm_power_off = seaboard_power_off; 312 pm_power_off = seaboard_power_off;
312 313
313 return 0; 314 return 0;
314 } 315 }
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