drm/nouveau: constify all struct drm_*_helper funcs pointers
authorJani Nikula <jani.nikula@intel.com>
Wed, 11 Mar 2015 09:51:04 +0000 (11:51 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Tue, 7 Apr 2015 16:11:24 +0000 (18:11 +0200)
They are not to be modified.

Generated using the semantic patch:

@@
@@
(
  const struct drm_crtc_helper_funcs *
|
- struct drm_crtc_helper_funcs *
+ const struct drm_crtc_helper_funcs *
)

@@
@@
(
  const struct drm_encoder_helper_funcs *
|
- struct drm_encoder_helper_funcs *
+ const struct drm_encoder_helper_funcs *
)

@@
@@
(
  const struct drm_connector_helper_funcs *
|
- struct drm_connector_helper_funcs *
+ const struct drm_connector_helper_funcs *
)

@@
@@
(
  const struct drm_plane_helper_funcs *
|
- struct drm_plane_helper_funcs *
+ const struct drm_plane_helper_funcs *
)

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/nouveau/dispnv04/crtc.c
drivers/gpu/drm/nouveau/dispnv04/dac.c
drivers/gpu/drm/nouveau/dispnv04/dfp.c
drivers/gpu/drm/nouveau/dispnv04/disp.c
drivers/gpu/drm/nouveau/dispnv04/tvnv04.c
drivers/gpu/drm/nouveau/dispnv04/tvnv17.c
drivers/gpu/drm/nouveau/nouveau_connector.c

index 542bb266a0ab8ee8f9cdfadce188d25c7605c0b4..3d96b49fe66209707acaf57bd66f6db1304e5941 100644 (file)
@@ -703,7 +703,7 @@ static void nv_crtc_prepare(struct drm_crtc *crtc)
        struct drm_device *dev = crtc->dev;
        struct nouveau_drm *drm = nouveau_drm(dev);
        struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
-       struct drm_crtc_helper_funcs *funcs = crtc->helper_private;
+       const struct drm_crtc_helper_funcs *funcs = crtc->helper_private;
 
        if (nv_two_heads(dev))
                NVSetOwner(dev, nv_crtc->index);
@@ -724,7 +724,7 @@ static void nv_crtc_prepare(struct drm_crtc *crtc)
 static void nv_crtc_commit(struct drm_crtc *crtc)
 {
        struct drm_device *dev = crtc->dev;
-       struct drm_crtc_helper_funcs *funcs = crtc->helper_private;
+       const struct drm_crtc_helper_funcs *funcs = crtc->helper_private;
        struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
 
        nouveau_hw_load_state(dev, nv_crtc->index, &nv04_display(dev)->mode_reg);
index d7b495a5f30cff0100a8343ea18e7e8ea0ec404a..af7249ca0f4b18d5b5e73c2cd1137746f1b3b8a5 100644 (file)
@@ -358,7 +358,7 @@ static bool nv04_dac_mode_fixup(struct drm_encoder *encoder,
 
 static void nv04_dac_prepare(struct drm_encoder *encoder)
 {
-       struct drm_encoder_helper_funcs *helper = encoder->helper_private;
+       const struct drm_encoder_helper_funcs *helper = encoder->helper_private;
        struct drm_device *dev = encoder->dev;
        int head = nouveau_crtc(encoder->crtc)->index;
 
@@ -409,7 +409,7 @@ static void nv04_dac_commit(struct drm_encoder *encoder)
        struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
        struct nouveau_drm *drm = nouveau_drm(encoder->dev);
        struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
-       struct drm_encoder_helper_funcs *helper = encoder->helper_private;
+       const struct drm_encoder_helper_funcs *helper = encoder->helper_private;
 
        helper->dpms(encoder, DRM_MODE_DPMS_ON);
 
index f6ca343fd34a9b2db0f51258ef1c0d99b576ab0e..7cfb0cbc9b6e9f4bc24ff58f50df6995b4daa5ba 100644 (file)
@@ -244,7 +244,7 @@ static void nv04_dfp_prepare_sel_clk(struct drm_device *dev,
 static void nv04_dfp_prepare(struct drm_encoder *encoder)
 {
        struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
-       struct drm_encoder_helper_funcs *helper = encoder->helper_private;
+       const struct drm_encoder_helper_funcs *helper = encoder->helper_private;
        struct drm_device *dev = encoder->dev;
        int head = nouveau_crtc(encoder->crtc)->index;
        struct nv04_crtc_reg *crtcstate = nv04_display(dev)->mode_reg.crtc_reg;
@@ -445,7 +445,7 @@ static void nv04_dfp_commit(struct drm_encoder *encoder)
 {
        struct drm_device *dev = encoder->dev;
        struct nouveau_drm *drm = nouveau_drm(dev);
-       struct drm_encoder_helper_funcs *helper = encoder->helper_private;
+       const struct drm_encoder_helper_funcs *helper = encoder->helper_private;
        struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
        struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
        struct dcb_output *dcbe = nv_encoder->dcb;
index f96237ef2a6b336dfc15da387c8059d8c751d31a..4131be5507ab7777f5ae1be803f5184d2359a320 100644 (file)
@@ -109,7 +109,7 @@ nv04_display_create(struct drm_device *dev)
                crtc->funcs->save(crtc);
 
        list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
-               struct drm_encoder_helper_funcs *func = encoder->helper_private;
+               const struct drm_encoder_helper_funcs *func = encoder->helper_private;
 
                func->save(encoder);
        }
@@ -138,7 +138,7 @@ nv04_display_destroy(struct drm_device *dev)
 
        /* Restore state */
        list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
-               struct drm_encoder_helper_funcs *func = encoder->helper_private;
+               const struct drm_encoder_helper_funcs *func = encoder->helper_private;
 
                func->restore(encoder);
        }
@@ -169,7 +169,7 @@ nv04_display_init(struct drm_device *dev)
         * on suspend too.
         */
        list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
-               struct drm_encoder_helper_funcs *func = encoder->helper_private;
+               const struct drm_encoder_helper_funcs *func = encoder->helper_private;
 
                func->restore(encoder);
        }
index d9664b37def17f01247fcbe676d7aec69f34e794..70e95cf6fd1901d6f45ce90441ea1bceb75dcaea 100644 (file)
@@ -122,7 +122,7 @@ static void nv04_tv_prepare(struct drm_encoder *encoder)
 {
        struct drm_device *dev = encoder->dev;
        int head = nouveau_crtc(encoder->crtc)->index;
-       struct drm_encoder_helper_funcs *helper = encoder->helper_private;
+       const struct drm_encoder_helper_funcs *helper = encoder->helper_private;
 
        helper->dpms(encoder, DRM_MODE_DPMS_OFF);
 
@@ -164,7 +164,7 @@ static void nv04_tv_commit(struct drm_encoder *encoder)
        struct drm_device *dev = encoder->dev;
        struct nouveau_drm *drm = nouveau_drm(dev);
        struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
-       struct drm_encoder_helper_funcs *helper = encoder->helper_private;
+       const struct drm_encoder_helper_funcs *helper = encoder->helper_private;
 
        helper->dpms(encoder, DRM_MODE_DPMS_ON);
 
index 731d74efc1e5714badb1ca2baaf9ff2cf67e1c7f..d9720dda838512a0c17d0310531f6d94893c784b 100644 (file)
@@ -405,7 +405,7 @@ static void nv17_tv_prepare(struct drm_encoder *encoder)
 {
        struct drm_device *dev = encoder->dev;
        struct nouveau_drm *drm = nouveau_drm(dev);
-       struct drm_encoder_helper_funcs *helper = encoder->helper_private;
+       const struct drm_encoder_helper_funcs *helper = encoder->helper_private;
        struct nv17_tv_norm_params *tv_norm = get_tv_norm(encoder);
        int head = nouveau_crtc(encoder->crtc)->index;
        uint8_t *cr_lcd = &nv04_display(dev)->mode_reg.crtc_reg[head].CRTC[
@@ -583,7 +583,7 @@ static void nv17_tv_commit(struct drm_encoder *encoder)
        struct nouveau_drm *drm = nouveau_drm(dev);
        struct nouveau_crtc *nv_crtc = nouveau_crtc(encoder->crtc);
        struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);
-       struct drm_encoder_helper_funcs *helper = encoder->helper_private;
+       const struct drm_encoder_helper_funcs *helper = encoder->helper_private;
 
        if (get_tv_norm(encoder)->kind == TV_ENC_MODE) {
                nv17_tv_update_rescaler(encoder);
index db7095ae4ebbdd7266b18c425a3864d2f035b4f6..3162040bc3148b2157249dd29f945d8d05585812 100644 (file)
@@ -309,7 +309,7 @@ detect_analog:
                nv_encoder = find_encoder(connector, DCB_OUTPUT_TV);
        if (nv_encoder && force) {
                struct drm_encoder *encoder = to_drm_encoder(nv_encoder);
-               struct drm_encoder_helper_funcs *helper =
+               const struct drm_encoder_helper_funcs *helper =
                                                encoder->helper_private;
 
                if (helper->detect(encoder, connector) ==
@@ -592,7 +592,7 @@ nouveau_connector_set_property(struct drm_connector *connector,
 static struct drm_display_mode *
 nouveau_connector_native_mode(struct drm_connector *connector)
 {
-       struct drm_connector_helper_funcs *helper = connector->helper_private;
+       const struct drm_connector_helper_funcs *helper = connector->helper_private;
        struct nouveau_drm *drm = nouveau_drm(connector->dev);
        struct nouveau_connector *nv_connector = nouveau_connector(connector);
        struct drm_device *dev = connector->dev;