mirror of https://gitee.com/openkylin/linux.git
rt2x00: Remove redundant code in rfkill setup
In rt2x00rfkill.c, routine input_allocate_device() is called even though input_allocate_polled_device(), which was just called, includes a call to that routine. This patch, which has not been tested, removes the redundant code. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
61af43c56b
commit
6f8a4da17e
|
@ -136,12 +136,6 @@ int rt2x00rfkill_allocate(struct rt2x00_dev *rt2x00dev)
|
||||||
rt2x00dev->poll_dev->poll = rt2x00rfkill_poll;
|
rt2x00dev->poll_dev->poll = rt2x00rfkill_poll;
|
||||||
rt2x00dev->poll_dev->poll_interval = RFKILL_POLL_INTERVAL;
|
rt2x00dev->poll_dev->poll_interval = RFKILL_POLL_INTERVAL;
|
||||||
|
|
||||||
rt2x00dev->poll_dev->input = input_allocate_device();
|
|
||||||
if (!rt2x00dev->poll_dev->input) {
|
|
||||||
ERROR(rt2x00dev, "Failed to allocate input device.\n");
|
|
||||||
goto exit_free_polldev;
|
|
||||||
}
|
|
||||||
|
|
||||||
rt2x00dev->poll_dev->input->name = rt2x00dev->ops->name;
|
rt2x00dev->poll_dev->input->name = rt2x00dev->ops->name;
|
||||||
rt2x00dev->poll_dev->input->phys = wiphy_name(rt2x00dev->hw->wiphy);
|
rt2x00dev->poll_dev->input->phys = wiphy_name(rt2x00dev->hw->wiphy);
|
||||||
rt2x00dev->poll_dev->input->id.bustype = BUS_HOST;
|
rt2x00dev->poll_dev->input->id.bustype = BUS_HOST;
|
||||||
|
|
Loading…
Reference in New Issue