From: Ian Abbott Date: Thu, 4 Apr 2013 13:59:06 +0000 (+0100) Subject: staging: comedi: remove hardware_device from struct comedi_device_info X-Git-Tag: omap-for-v3.10/dt-fixes-for-merge-window~137^2~282 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0918e595ae45d99e0bd8a9950a0f0cb0e2a9c948;p=pandora-kernel.git staging: comedi: remove hardware_device from struct comedi_device_info The `hardware_device` member of `struct comedi_device_info` is only set to point to a hardware device by the auto-configuration code (specifically `comedi_alloc_board_minor() with a non-NULL `hardware_device` parameter) so that it can be found again by the auto-unconfiguration code (specifically `comedi_release_hardware_device()`). However, as `info->device->hw_dev` (where `info` is a pointer to the `struct comedi_device_info`) is set to the same value as `info->hardware_device` (by calling `comedi_set_hw_dev()` with the same hardware device pointer) we can look for that instead, so there is no need for the `hardware_device` member any more. Get rid of it. Signed-off-by: Ian Abbott Reviewed-by: H Hartley Sweeten Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed