Commit 306e352a authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Uwe Kleine-König

macintosh/mediabay: make data used as *of_device_id.data const

Since of_device_id.data is declared as a pointer to const data a few
more consts can be added in this driver.

[ukl: split Arnd's patch by driver]
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Acked-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
parent 1d10a65f
...@@ -669,7 +669,7 @@ static int media_bay_resume(struct macio_dev *mdev) ...@@ -669,7 +669,7 @@ static int media_bay_resume(struct macio_dev *mdev)
/* Definitions of "ops" structures. /* Definitions of "ops" structures.
*/ */
static struct mb_ops ohare_mb_ops = { static const struct mb_ops ohare_mb_ops = {
.name = "Ohare", .name = "Ohare",
.content = ohare_mb_content, .content = ohare_mb_content,
.power = ohare_mb_power, .power = ohare_mb_power,
...@@ -678,7 +678,7 @@ static struct mb_ops ohare_mb_ops = { ...@@ -678,7 +678,7 @@ static struct mb_ops ohare_mb_ops = {
.un_reset_ide = ohare_mb_un_reset_ide, .un_reset_ide = ohare_mb_un_reset_ide,
}; };
static struct mb_ops heathrow_mb_ops = { static const struct mb_ops heathrow_mb_ops = {
.name = "Heathrow", .name = "Heathrow",
.content = heathrow_mb_content, .content = heathrow_mb_content,
.power = heathrow_mb_power, .power = heathrow_mb_power,
...@@ -687,7 +687,7 @@ static struct mb_ops heathrow_mb_ops = { ...@@ -687,7 +687,7 @@ static struct mb_ops heathrow_mb_ops = {
.un_reset_ide = heathrow_mb_un_reset_ide, .un_reset_ide = heathrow_mb_un_reset_ide,
}; };
static struct mb_ops keylargo_mb_ops = { static const struct mb_ops keylargo_mb_ops = {
.name = "KeyLargo", .name = "KeyLargo",
.init = keylargo_mb_init, .init = keylargo_mb_init,
.content = keylargo_mb_content, .content = keylargo_mb_content,
......
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