[PATCH] drm/edid: Allow comma separated edid binaries. (v3)

2015-08-28 Thread Daniel Vetter
On Thu, Aug 27, 2015 at 10:04:13AM -0700, Bob Paauwe wrote: > Allow comma separated filenames in the edid_firmware parameter. > > For example: > > edid_firmware=eDP-1:edid/1280x480.bin,DP-2:edid/1920x1080.bin > > v2: Use strsep() to simplify parsing of comma seperated string. (Matt) > Move i

[PATCH] drm/edid: Allow comma separated edid binaries. (v3)

2015-08-28 Thread Jani Nikula
On Thu, 27 Aug 2015, Bob Paauwe wrote: > Allow comma separated filenames in the edid_firmware parameter. > > For example: > > edid_firmware=eDP-1:edid/1280x480.bin,DP-2:edid/1920x1080.bin > > v2: Use strsep() to simplify parsing of comma seperated string. (Matt) > Move initial bail before strd

[PATCH] drm/edid: Allow comma separated edid binaries. (v3)

2015-08-27 Thread Bob Paauwe
Allow comma separated filenames in the edid_firmware parameter. For example: edid_firmware=eDP-1:edid/1280x480.bin,DP-2:edid/1920x1080.bin v2: Use strsep() to simplify parsing of comma seperated string. (Matt) Move initial bail before strdup. (Matt) v3: Changed conditionals after while loop