Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 363196
b: refs/heads/master
c: 5ba75b5
h: refs/heads/master
v: v3
  • Loading branch information
Jingoo Han authored and Greg Kroah-Hartman committed Apr 5, 2013
1 parent 4cacbb9 commit b4d65cb
Show file tree
Hide file tree
Showing 2 changed files with 4 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: 41ddcf67b864343690bffd8029a882377c3ff50b
refs/heads/master: 5ba75b559a5cb84b2429aa827a8a95fa50cab99a
6 changes: 3 additions & 3 deletions trunk/drivers/misc/eeprom/eeprom_93xx46.c
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ static int eeprom_93xx46_probe(struct spi_device *spi)
dev_err(&spi->dev, "can't create erase interface\n");
}

dev_set_drvdata(&spi->dev, edev);
spi_set_drvdata(spi, edev);
return 0;
fail:
kfree(edev);
Expand All @@ -372,13 +372,13 @@ static int eeprom_93xx46_probe(struct spi_device *spi)

static int eeprom_93xx46_remove(struct spi_device *spi)
{
struct eeprom_93xx46_dev *edev = dev_get_drvdata(&spi->dev);
struct eeprom_93xx46_dev *edev = spi_get_drvdata(spi);

if (!(edev->pdata->flags & EE_READONLY))
device_remove_file(&spi->dev, &dev_attr_erase);

sysfs_remove_bin_file(&spi->dev.kobj, &edev->bin);
dev_set_drvdata(&spi->dev, NULL);
spi_set_drvdata(spi, NULL);
kfree(edev);
return 0;
}
Expand Down

0 comments on commit b4d65cb

Please sign in to comment.