Hi Shubhangi,

[auto build test WARNING on drm-intel/for-linux-next -- if it's inappropriate 
base, please suggest rules for selecting the more suitable base]

url:    
https://github.com/0day-ci/linux/commits/Shubhangi-Shrivastava/Fixing-sink-count-related-detection-over/20151102-205435
config: i386-randconfig-x003-11010709 (attached as .config)
reproduce:
        # save the attached .config to linux build tree
        make ARCH=i386 

All warnings (new ones prefixed by >>):

   drivers/gpu/drm/i915/intel_dp.c: In function 'intel_dp_detect':
>> drivers/gpu/drm/i915/intel_dp.c:4883:22: warning: passing argument 1 of 
>> 'intel_dp_long_pulse' from incompatible pointer type 
>> [-Wincompatible-pointer-types]
     intel_dp_long_pulse(intel_dp->attached_connector);
                         ^
   drivers/gpu/drm/i915/intel_dp.c:4789:1: note: expected 'struct drm_connector 
*' but argument is of type 'struct intel_connector *'
    intel_dp_long_pulse(struct drm_connector *connector)
    ^

vim +/intel_dp_long_pulse +4883 drivers/gpu/drm/i915/intel_dp.c

  4867  {
  4868          struct intel_dp *intel_dp = intel_attached_dp(connector);
  4869          struct intel_digital_port *intel_dig_port = 
dp_to_dig_port(intel_dp);
  4870          struct intel_encoder *intel_encoder = &intel_dig_port->base;
  4871          struct intel_connector *intel_connector = 
to_intel_connector(connector);
  4872  
  4873          DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
  4874                        connector->base.id, connector->name);
  4875  
  4876          if (intel_dp->is_mst) {
  4877                  /* MST devices are disconnected from a monitor POV */
  4878                  if (intel_encoder->type != INTEL_OUTPUT_EDP)
  4879                          intel_encoder->type = INTEL_OUTPUT_DISPLAYPORT;
  4880                  return connector_status_disconnected;
  4881          }
  4882  
> 4883          intel_dp_long_pulse(intel_dp->attached_connector);
  4884  
  4885          if (intel_connector->detect_edid)
  4886                  return connector_status_connected;
  4887          else
  4888                  return connector_status_disconnected;
  4889  }
  4890  
  4891  static void

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

Attachment: .config.gz
Description: Binary data

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to