From ca8750e820738d25ce9171314e0c8bd4a4607915 Mon Sep 17 00:00:00 2001 From: Julian Wiedmann Date: Thu, 19 Mar 2020 14:13:17 +0100 Subject: [PATCH] zdev: qeth: remove the fake_broadcast attribute MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This attribute is a no-op and never provided the described functionality. It will be removed in the 5.7 kernel release with commit 5f4019a80839 ("s390/qeth: remove fake_broadcast attribute"). Signed-off-by: Julian Wiedmann Signed-off-by: Jan Höppner --- zdev/src/qeth.c | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/zdev/src/qeth.c b/zdev/src/qeth.c index 6191ad1a..ebe8bb10 100644 --- a/zdev/src/qeth.c +++ b/zdev/src/qeth.c @@ -511,20 +511,6 @@ static struct attrib qeth_attr_route6 = { .st_data = QETH_DATA(layer_3, group_none), }; -static struct attrib qeth_attr_fake_broadcast = { - .name = "fake_broadcast", - .title = "Enable simulation of broadcast capability", - .desc = - "Control whether a QETH device that doesn't support broadcast should\n" - "fake the broadcast capability.\n" - " 0: Fake broadcasting depending on hardware capabilities\n" - " 1: No faked broadcasting\n", - .defval = "0", - .order_cmp = after_layer2_order_cmp, - .accept = ACCEPT_ARRAY(ACCEPT_RANGE(0, 1)), - .st_data = QETH_DATA(layer_3, group_none), -}; - static struct attrib qeth_attr_ipa_takeover_enable = { .name = "ipa_takeover/enable", .title = "Control IP address takeover", @@ -1451,7 +1437,6 @@ struct subtype qeth_subtype_qeth = { &qeth_attr_hw_trap, &qeth_attr_route4, &qeth_attr_route6, - &qeth_attr_fake_broadcast, &qeth_attr_ipa_takeover_enable, &qeth_attr_ipa_takeover_add4, &qeth_attr_ipa_takeover_add6,