Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 364295
b: refs/heads/master
c: 31bdfc6
h: refs/heads/master
i:
  364293: 784aeb1
  364291: d1fe54a
  364287: 034af96
v: v3
  • Loading branch information
Jingoo Han authored and Greg Kroah-Hartman committed Apr 5, 2013
1 parent 742b6ce commit c99b720
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: 89fa28dbe0395ee06f3aacfe27655323ebad43d1
refs/heads/master: 31bdfc649f4577c9b1120c67b7b1e85f7777aad0
4 changes: 2 additions & 2 deletions trunk/drivers/tty/serial/max3100.c
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ static int max3100_probe(struct spi_device *spi)
max3100s[i]->spi = spi;
max3100s[i]->irq = spi->irq;
spin_lock_init(&max3100s[i]->conf_lock);
dev_set_drvdata(&spi->dev, max3100s[i]);
spi_set_drvdata(spi, max3100s[i]);
pdata = spi->dev.platform_data;
max3100s[i]->crystal = pdata->crystal;
max3100s[i]->loopback = pdata->loopback;
Expand Down Expand Up @@ -819,7 +819,7 @@ static int max3100_probe(struct spi_device *spi)

static int max3100_remove(struct spi_device *spi)
{
struct max3100_port *s = dev_get_drvdata(&spi->dev);
struct max3100_port *s = spi_get_drvdata(spi);
int i;

mutex_lock(&max3100s_lock);
Expand Down

0 comments on commit c99b720

Please sign in to comment.