Commit ca91facf authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by David Woodhouse

mtd: local symbols should be static

The three backing_dev_info symbols are only used in this file and
should be static.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: default avatarArtem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent 83025c82
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
* backing device capabilities for non-mappable devices (such as NAND flash) * backing device capabilities for non-mappable devices (such as NAND flash)
* - permits private mappings, copies are taken of the data * - permits private mappings, copies are taken of the data
*/ */
struct backing_dev_info mtd_bdi_unmappable = { static struct backing_dev_info mtd_bdi_unmappable = {
.capabilities = BDI_CAP_MAP_COPY, .capabilities = BDI_CAP_MAP_COPY,
}; };
...@@ -52,7 +52,7 @@ struct backing_dev_info mtd_bdi_unmappable = { ...@@ -52,7 +52,7 @@ struct backing_dev_info mtd_bdi_unmappable = {
* - permits private mappings, copies are taken of the data * - permits private mappings, copies are taken of the data
* - permits non-writable shared mappings * - permits non-writable shared mappings
*/ */
struct backing_dev_info mtd_bdi_ro_mappable = { static struct backing_dev_info mtd_bdi_ro_mappable = {
.capabilities = (BDI_CAP_MAP_COPY | BDI_CAP_MAP_DIRECT | .capabilities = (BDI_CAP_MAP_COPY | BDI_CAP_MAP_DIRECT |
BDI_CAP_EXEC_MAP | BDI_CAP_READ_MAP), BDI_CAP_EXEC_MAP | BDI_CAP_READ_MAP),
}; };
...@@ -62,7 +62,7 @@ struct backing_dev_info mtd_bdi_ro_mappable = { ...@@ -62,7 +62,7 @@ struct backing_dev_info mtd_bdi_ro_mappable = {
* - permits private mappings, copies are taken of the data * - permits private mappings, copies are taken of the data
* - permits non-writable shared mappings * - permits non-writable shared mappings
*/ */
struct backing_dev_info mtd_bdi_rw_mappable = { static struct backing_dev_info mtd_bdi_rw_mappable = {
.capabilities = (BDI_CAP_MAP_COPY | BDI_CAP_MAP_DIRECT | .capabilities = (BDI_CAP_MAP_COPY | BDI_CAP_MAP_DIRECT |
BDI_CAP_EXEC_MAP | BDI_CAP_READ_MAP | BDI_CAP_EXEC_MAP | BDI_CAP_READ_MAP |
BDI_CAP_WRITE_MAP), BDI_CAP_WRITE_MAP),
......
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