Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 251909
b: refs/heads/master
c: 7dc00a0
h: refs/heads/master
i:
  251907: b68d7f0
v: v3
  • Loading branch information
Samuel Ortiz committed May 26, 2011
1 parent 82219d0 commit 3919966
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1f8c666caddb4cd0c547bbedbc9f98c7bf51e176
refs/heads/master: 7dc00a0d14992d0083fefccad7839ac837ea55bc
3 changes: 2 additions & 1 deletion trunk/drivers/mfd/t7l66xb.c
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,8 @@ static int t7l66xb_probe(struct platform_device *dev)

t7l66xb_attach_irq(dev);

t7l66xb_cells[T7L66XB_CELL_NAND].mfd_data = pdata->nand_data;
t7l66xb_cells[T7L66XB_CELL_NAND].platform_data = pdata->nand_data;
t7l66xb_cells[T7L66XB_CELL_NAND].pdata_size = sizeof(*pdata->nand_data);

ret = mfd_add_devices(&dev->dev, dev->id,
t7l66xb_cells, ARRAY_SIZE(t7l66xb_cells),
Expand Down
4 changes: 3 additions & 1 deletion trunk/drivers/mfd/tc6393xb.c
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,9 @@ static int __devinit tc6393xb_probe(struct platform_device *dev)
goto err_setup;
}

tc6393xb_cells[TC6393XB_CELL_NAND].mfd_data = tcpd->nand_data;
tc6393xb_cells[TC6393XB_CELL_NAND].platform_data = tcpd->nand_data;
tc6393xb_cells[TC6393XB_CELL_NAND].pdata_size =
sizeof(*tcpd->nand_data);
tc6393xb_cells[TC6393XB_CELL_FB].platform_data = tcpd->fb_data;
tc6393xb_cells[TC6393XB_CELL_FB].pdata_size = sizeof(*tcpd->fb_data);

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/mtd/nand/tmio_nand.c
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ static void tmio_hw_stop(struct platform_device *dev, struct tmio_nand *tmio)

static int tmio_probe(struct platform_device *dev)
{
struct tmio_nand_data *data = mfd_get_data(dev);
struct tmio_nand_data *data = dev->dev.platform_data;
struct resource *fcr = platform_get_resource(dev,
IORESOURCE_MEM, 0);
struct resource *ccr = platform_get_resource(dev,
Expand Down

0 comments on commit 3919966

Please sign in to comment.