diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-13 23:58:41 +0100 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-01-17 09:54:08 -0500 |
commit | 7d5869e78f4c9d32f834dadefbb7dcb3c9d4d85f (patch) | |
tree | 136560d132409e801be0c0e0ba00da7ea9695d05 /include | |
parent | 685a4ef0df23b97eea1842c2698da9a2e35fc976 (diff) | |
download | linux-3.10-7d5869e78f4c9d32f834dadefbb7dcb3c9d4d85f.tar.gz linux-3.10-7d5869e78f4c9d32f834dadefbb7dcb3c9d4d85f.tar.bz2 linux-3.10-7d5869e78f4c9d32f834dadefbb7dcb3c9d4d85f.zip |
bcma: connect the bcma bus suspend/resume to the bcma driver suspend/resume
Now the low-level driver actually gets informed that it is getting suspended and resumed.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/bcma/bcma.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/bcma/bcma.h b/include/linux/bcma/bcma.h index f4b8346b1a3..83c209f3949 100644 --- a/include/linux/bcma/bcma.h +++ b/include/linux/bcma/bcma.h @@ -162,7 +162,7 @@ struct bcma_driver { int (*probe)(struct bcma_device *dev); void (*remove)(struct bcma_device *dev); - int (*suspend)(struct bcma_device *dev, pm_message_t state); + int (*suspend)(struct bcma_device *dev); int (*resume)(struct bcma_device *dev); void (*shutdown)(struct bcma_device *dev); |