diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-09-05 19:12:05 +0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-09-05 21:57:04 +0400 |
commit | 5b457e3910251ef28712ba5d14adac8194bd5b2c (patch) | |
tree | 6c16b40793551820607abd43aab82076433d52e3 /drivers/base/regmap/regmap-spi.c | |
parent | a7ace561f1e3ebbf40ff20adde9968721a55ef0a (diff) | |
download | linux-5b457e3910251ef28712ba5d14adac8194bd5b2c.tar.xz |
regmap: Remove redundant owner field from the bus type struct
No longer used as users link directly with the bus types so the core
module infrastructure does refcounting for us.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/base/regmap/regmap-spi.c')
-rw-r--r-- | drivers/base/regmap/regmap-spi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/base/regmap/regmap-spi.c b/drivers/base/regmap/regmap-spi.c index cc0f1164cf99..14132b829062 100644 --- a/drivers/base/regmap/regmap-spi.c +++ b/drivers/base/regmap/regmap-spi.c @@ -50,7 +50,6 @@ static struct regmap_bus regmap_spi = { .write = regmap_spi_write, .gather_write = regmap_spi_gather_write, .read = regmap_spi_read, - .owner = THIS_MODULE, .read_flag_mask = 0x80, }; |