Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 760dd0ee authored by Martin Schwidefsky's avatar Martin Schwidefsky
Browse files

s390/smsgiucv: disable SMSG on module unload



The module exit function of the smsgiucv module uses the incorrect CP
command to disable SMSG messages. The correct command is "SET SMSG OFF".
Use it.

Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent dccccd33
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -176,7 +176,7 @@ static struct device_driver smsg_driver = {

static void __exit smsg_exit(void)
{
	cpcmd("SET SMSG IUCV", NULL, 0, NULL);
	cpcmd("SET SMSG OFF", NULL, 0, NULL);
	device_unregister(smsg_dev);
	iucv_unregister(&smsg_handler, 1);
	driver_unregister(&smsg_driver);