Commit 0ffa0285 authored by Hans-Peter Nilsson's avatar Hans-Peter Nilsson Committed by Linus Torvalds

[PATCH] SPI cleanup() method param becomes non-const

I'd like to assign NULL to kfree()d members of a structure.  I can't do
that without ugly casting (see the PXA patch) when the structure pointed to
is const-qualified.  I don't really see a reason why the cleanup method
isn't allowed to alter the object it should clean up.  :-)

No, I didn't test the PXA patch, but I verified that the NULL-assignment
doesn't stop me from doing rmmod/insmodding my own spi_bitbang-based
driver.
Signed-off-by: default avatarHans-Peter Nilsson <hp@axis.com>
Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 7f8c7619
...@@ -1214,9 +1214,9 @@ static int setup(struct spi_device *spi) ...@@ -1214,9 +1214,9 @@ static int setup(struct spi_device *spi)
return 0; return 0;
} }
static void cleanup(const struct spi_device *spi) static void cleanup(struct spi_device *spi)
{ {
struct chip_data *chip = spi_get_ctldata((struct spi_device *)spi); struct chip_data *chip = spi_get_ctldata(spi);
kfree(chip); kfree(chip);
} }
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
*/ */
static void spidev_release(struct device *dev) static void spidev_release(struct device *dev)
{ {
const struct spi_device *spi = to_spi_device(dev); struct spi_device *spi = to_spi_device(dev);
/* spi masters may cleanup for released devices */ /* spi masters may cleanup for released devices */
if (spi->master->cleanup) if (spi->master->cleanup)
......
...@@ -238,7 +238,7 @@ EXPORT_SYMBOL_GPL(spi_bitbang_setup); ...@@ -238,7 +238,7 @@ EXPORT_SYMBOL_GPL(spi_bitbang_setup);
/** /**
* spi_bitbang_cleanup - default cleanup for per-word I/O loops * spi_bitbang_cleanup - default cleanup for per-word I/O loops
*/ */
void spi_bitbang_cleanup(const struct spi_device *spi) void spi_bitbang_cleanup(struct spi_device *spi)
{ {
kfree(spi->controller_state); kfree(spi->controller_state);
} }
......
...@@ -220,7 +220,7 @@ struct spi_master { ...@@ -220,7 +220,7 @@ struct spi_master {
struct spi_message *mesg); struct spi_message *mesg);
/* called on release() to free memory provided by spi_master */ /* called on release() to free memory provided by spi_master */
void (*cleanup)(const struct spi_device *spi); void (*cleanup)(struct spi_device *spi);
}; };
static inline void *spi_master_get_devdata(struct spi_master *master) static inline void *spi_master_get_devdata(struct spi_master *master)
......
...@@ -55,7 +55,7 @@ struct spi_bitbang { ...@@ -55,7 +55,7 @@ struct spi_bitbang {
* methods, if you like. * methods, if you like.
*/ */
extern int spi_bitbang_setup(struct spi_device *spi); extern int spi_bitbang_setup(struct spi_device *spi);
extern void spi_bitbang_cleanup(const struct spi_device *spi); extern void spi_bitbang_cleanup(struct spi_device *spi);
extern int spi_bitbang_transfer(struct spi_device *spi, struct spi_message *m); extern int spi_bitbang_transfer(struct spi_device *spi, struct spi_message *m);
extern int spi_bitbang_setup_transfer(struct spi_device *spi, extern int spi_bitbang_setup_transfer(struct spi_device *spi,
struct spi_transfer *t); struct spi_transfer *t);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment