diff options
author | Alexander Shiyan <shc_work@mail.ru> | 2014-02-07 18:16:05 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-13 09:33:04 -0800 |
commit | 1e6128b63597adf97f1865fba7d778a6f8ccb7a0 (patch) | |
tree | 3f47e01014d93cd9db0f3aa52f037a31ca40a482 /include/linux | |
parent | e97e15561cd885926f78200a1e75e713172da60e (diff) | |
download | blackbird-op-linux-1e6128b63597adf97f1865fba7d778a6f8ccb7a0.tar.gz blackbird-op-linux-1e6128b63597adf97f1865fba7d778a6f8ccb7a0.zip |
serial: max310x: Remove init() and exit() callbacks
These callbacks were previously used for the IC power initialization.
If this initialization will be needed in the future, it should be
implemented with the regulator API.
Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/platform_data/max310x.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/platform_data/max310x.h b/include/linux/platform_data/max310x.h index dd11dcd1a184..5f4b35d99c2e 100644 --- a/include/linux/platform_data/max310x.h +++ b/include/linux/platform_data/max310x.h @@ -55,10 +55,6 @@ struct max310x_pdata { const int frequency; /* GPIO base number (can be negative) */ const int gpio_base; - /* Called during startup */ - void (*init)(void); - /* Called before finish */ - void (*exit)(void); }; #endif |