diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-08 13:04:48 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-08 13:04:48 -0500 |
commit | 43187902cbfafe73ede0144166b741fb0f7d04e1 (patch) | |
tree | 6811915fddffdcacfc929d5a46800ced6f9b3db4 /include | |
parent | 21eb4fa1700112d1420d72e1de708af671a251c8 (diff) | |
parent | 07b2463046247ce580ff9b37e91394f2f6424768 (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/driver-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/gregkh/driver-2.6:
Revert "Driver core: convert SPI code to use struct device"
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/spi/spi.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index 8c2edd82a073..176f6e36dbfa 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h | |||
@@ -170,7 +170,7 @@ static inline void spi_unregister_driver(struct spi_driver *sdrv) | |||
170 | * message's completion function when the transaction completes. | 170 | * message's completion function when the transaction completes. |
171 | */ | 171 | */ |
172 | struct spi_master { | 172 | struct spi_master { |
173 | struct device dev; | 173 | struct class_device cdev; |
174 | 174 | ||
175 | /* other than negative (== assign one dynamically), bus_num is fully | 175 | /* other than negative (== assign one dynamically), bus_num is fully |
176 | * board-specific. usually that simplifies to being SOC-specific. | 176 | * board-specific. usually that simplifies to being SOC-specific. |
@@ -216,17 +216,17 @@ struct spi_master { | |||
216 | 216 | ||
217 | static inline void *spi_master_get_devdata(struct spi_master *master) | 217 | static inline void *spi_master_get_devdata(struct spi_master *master) |
218 | { | 218 | { |
219 | return dev_get_drvdata(&master->dev); | 219 | return class_get_devdata(&master->cdev); |
220 | } | 220 | } |
221 | 221 | ||
222 | static inline void spi_master_set_devdata(struct spi_master *master, void *data) | 222 | static inline void spi_master_set_devdata(struct spi_master *master, void *data) |
223 | { | 223 | { |
224 | dev_set_drvdata(&master->dev, data); | 224 | class_set_devdata(&master->cdev, data); |
225 | } | 225 | } |
226 | 226 | ||
227 | static inline struct spi_master *spi_master_get(struct spi_master *master) | 227 | static inline struct spi_master *spi_master_get(struct spi_master *master) |
228 | { | 228 | { |
229 | if (!master || !get_device(&master->dev)) | 229 | if (!master || !class_device_get(&master->cdev)) |
230 | return NULL; | 230 | return NULL; |
231 | return master; | 231 | return master; |
232 | } | 232 | } |
@@ -234,7 +234,7 @@ static inline struct spi_master *spi_master_get(struct spi_master *master) | |||
234 | static inline void spi_master_put(struct spi_master *master) | 234 | static inline void spi_master_put(struct spi_master *master) |
235 | { | 235 | { |
236 | if (master) | 236 | if (master) |
237 | put_device(&master->dev); | 237 | class_device_put(&master->cdev); |
238 | } | 238 | } |
239 | 239 | ||
240 | 240 | ||