Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 330013
b: refs/heads/master
c: 5863eab
h: refs/heads/master
i:
  330011: 9113a29
v: v3
  • Loading branch information
Venu Byravarasu authored and Samuel Ortiz committed Sep 28, 2012
1 parent e1c9438 commit 782e830
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: da58deec69777c22ece2ef871054c0d3d04e3e63
refs/heads/master: 5863eabb2a317ef499d340aa7201233a4fc9211e
10 changes: 10 additions & 0 deletions trunk/drivers/mfd/tps65910.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@
#include <linux/mfd/tps65910.h>
#include <linux/of_device.h>

static struct resource rtc_resources[] = {
{
.start = TPS65910_IRQ_RTC_ALARM,
.end = TPS65910_IRQ_RTC_ALARM,
.flags = IORESOURCE_IRQ,
}
};

static struct mfd_cell tps65910s[] = {
{
.name = "tps65910-gpio",
Expand All @@ -33,6 +41,8 @@ static struct mfd_cell tps65910s[] = {
},
{
.name = "tps65910-rtc",
.num_resources = ARRAY_SIZE(rtc_resources),
.resources = &rtc_resources[0],
},
{
.name = "tps65910-power",
Expand Down

0 comments on commit 782e830

Please sign in to comment.