Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

qeth: display "undefined" value of sysfs-attribute "layer2"

If nothing has been written into the qeth sysfs-attribute layer2,
its value is "-1" meaning "not yet defined". But the value is
displayed as "1" meaning "layer2 selected". The patch changes the
reading of this "-1"-value to "-1" to make clear the layer2-attribute
has not yet been defined.

Signed-off-by: Ursula Braun <ursula.braun@de.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Ursula Braun and committed by
David S. Miller
7c6a3ed5 0d788c7d

+1 -1
+1 -1
drivers/s390/net/qeth_core_sys.c
··· 364 364 if (!card) 365 365 return -EINVAL; 366 366 367 - return sprintf(buf, "%i\n", card->options.layer2 ? 1:0); 367 + return sprintf(buf, "%i\n", card->options.layer2); 368 368 } 369 369 370 370 static ssize_t qeth_dev_layer2_store(struct device *dev,