qeth: remove EDDP
[linux-block.git] / drivers / s390 / net / qeth_core_sys.c
index c26e842ad905d05c478eb9b393a169b8da833613..568465d7517fea77fde3a1c3562cd896ae31cb13 100644 (file)
@@ -427,8 +427,6 @@ static ssize_t qeth_dev_large_send_show(struct device *dev,
        switch (card->options.large_send) {
        case QETH_LARGE_SEND_NO:
                return sprintf(buf, "%s\n", "no");
-       case QETH_LARGE_SEND_EDDP:
-               return sprintf(buf, "%s\n", "EDDP");
        case QETH_LARGE_SEND_TSO:
                return sprintf(buf, "%s\n", "TSO");
        default:
@@ -449,8 +447,6 @@ static ssize_t qeth_dev_large_send_store(struct device *dev,
        tmp = strsep((char **) &buf, "\n");
        if (!strcmp(tmp, "no")) {
                type = QETH_LARGE_SEND_NO;
-       } else if (!strcmp(tmp, "EDDP")) {
-               type = QETH_LARGE_SEND_EDDP;
        } else if (!strcmp(tmp, "TSO")) {
                type = QETH_LARGE_SEND_TSO;
        } else {