-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'devel-hwmod' into cleanup
- Loading branch information
Showing
15 changed files
with
8,434 additions
and
9,217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* OMAP2+-common clockdomain data | ||
* | ||
* Copyright (C) 2008-2012 Texas Instruments, Inc. | ||
* Copyright (C) 2008-2010 Nokia Corporation | ||
* | ||
* Paul Walmsley, Jouni Högander | ||
*/ | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/io.h> | ||
|
||
#include "clockdomain.h" | ||
|
||
/* These are implicit clockdomains - they are never defined as such in TRM */ | ||
struct clockdomain prm_common_clkdm = { | ||
.name = "prm_clkdm", | ||
.pwrdm = { .name = "wkup_pwrdm" }, | ||
}; | ||
|
||
struct clockdomain cm_common_clkdm = { | ||
.name = "cm_clkdm", | ||
.pwrdm = { .name = "core_pwrdm" }, | ||
}; |
Oops, something went wrong.