diff options
author | Alan Hourihane <alanh@tungstengraphics.com> | 2008-06-02 10:03:28 +0100 |
---|---|---|
committer | Alan Hourihane <alanh@tungstengraphics.com> | 2008-06-02 10:03:28 +0100 |
commit | dc022084cda0a5558f033c3caa657d5af84ef544 (patch) | |
tree | 50204585183f5e84e6998e8e65c0b625f8201923 | |
parent | 149b17311ad5f117e8f53a7a8cc032e369b95ed2 (diff) |
Fix warnings
-rw-r--r-- | linux-core/drm_crtc_helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-core/drm_crtc_helper.c b/linux-core/drm_crtc_helper.c index 52a87da7..a8c44b76 100644 --- a/linux-core/drm_crtc_helper.c +++ b/linux-core/drm_crtc_helper.c @@ -299,7 +299,7 @@ static void drm_pick_crtcs (struct drm_device *dev) list_for_each_entry(modes_equal, &connector_equal->modes, head) { if (drm_mode_equal (modes, modes_equal)) { if ((encoder->possible_clones & encoder_equal->possible_clones) && (connector_equal->encoder->crtc == crtc)) { - printk("Cloning %s (0x%lx) to %s (0x%lx)\n",drm_get_connector_name(connector),encoder->possible_clones,drm_get_connector_name(connector_equal),encoder_equal->possible_clones); + printk("Cloning %s (0x%x) to %s (0x%x)\n",drm_get_connector_name(connector),encoder->possible_clones,drm_get_connector_name(connector_equal),encoder_equal->possible_clones); des_mode = modes; assigned = 0; goto clone; |