diff options
author | Anton Vorontsov <anton.vorontsov@linaro.org> | 2012-05-16 08:43:08 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-05-16 11:06:37 -0400 |
commit | 1894a253db97059bc299b834b76f665bc6586b1d (patch) | |
tree | 791ad2d33cc1d28c32fa340b0a8f0c2a645c4b26 /Documentation | |
parent | d109a674a3685d43f16da5cc4cb8b927d07c436d (diff) |
ramoops: Move to fs/pstore/ram.c
Since ramoops was converted to pstore, it has nothing to do with character
devices nowadays. Instead, today it is just a RAM backend for pstore.
The patch just moves things around. There are a few changes were needed
because of the move:
1. Kconfig and Makefiles fixups, of course.
2. In pstore/ram.c we have to play a bit with MODULE_PARAM_PREFIX, this
is needed to keep user experience the same as with ramoops driver
(i.e. so that ramoops.foo kernel command line arguments would still
work).
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Acked-by: Marco Stornelli <marco.stornelli@gmail.com>
Acked-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/ramoops.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/ramoops.txt b/Documentation/ramoops.txt index a0b9d8e75380..470d2c4db6ff 100644 --- a/Documentation/ramoops.txt +++ b/Documentation/ramoops.txt | |||
@@ -38,7 +38,7 @@ Setting the ramoops parameters can be done in 2 different manners: | |||
38 | 2. Use a platform device and set the platform data. The parameters can then | 38 | 2. Use a platform device and set the platform data. The parameters can then |
39 | be set through that platform data. An example of doing that is: | 39 | be set through that platform data. An example of doing that is: |
40 | 40 | ||
41 | #include <linux/ramoops.h> | 41 | #include <linux/pstore_ram.h> |
42 | [...] | 42 | [...] |
43 | 43 | ||
44 | static struct ramoops_platform_data ramoops_data = { | 44 | static struct ramoops_platform_data ramoops_data = { |