diff options
author | Hannes Reinecke <[email protected]> | 2024-07-22 14:02:21 +0200 |
---|---|---|
committer | Keith Busch <[email protected]> | 2024-08-22 13:25:11 -0700 |
commit | c5f2ca52d00de5d0348a758a28b51ddf5e685a89 (patch) | |
tree | c942aff9ffcb5f1f3d796f1810b91173dede48a7 | |
parent | 5bc46b49c828a6dfaab80b71ecb63fe76a1096d2 (diff) |
nvme: add a newline to the 'tls_key' sysfs attribute
Print a newline for easier userspace handling.
Signed-off-by: Hannes Reinecke <[email protected]>
Reviewed-by: Sagi Grimberg <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Signed-off-by: Keith Busch <[email protected]>
-rw-r--r-- | drivers/nvme/host/sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/sysfs.c b/drivers/nvme/host/sysfs.c index 72675b59a7a7..c391ad6c5a88 100644 --- a/drivers/nvme/host/sysfs.c +++ b/drivers/nvme/host/sysfs.c @@ -672,7 +672,7 @@ static ssize_t tls_key_show(struct device *dev, if (!ctrl->tls_pskid) return 0; - return sysfs_emit(buf, "%08x", ctrl->tls_pskid); + return sysfs_emit(buf, "%08x\n", ctrl->tls_pskid); } static DEVICE_ATTR_RO(tls_key); #endif |