From d108de7b8ad0f92bdc9f3951e762c09c762fd174 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 10 Jul 2024 10:14:07 +0200 Subject: MHR-36: Expose POWER64 VMS and common StackFrame across platforms. And code refactors. Signed-off-by: Amlal El Mahrouss --- Drivers/Hello/Hello.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Drivers/Hello') diff --git a/Drivers/Hello/Hello.c b/Drivers/Hello/Hello.c index ba3d9733..a2a6d54d 100644 --- a/Drivers/Hello/Hello.c +++ b/Drivers/Hello/Hello.c @@ -40,12 +40,12 @@ static HelloMasterConfigHeader* cHeader = nil; /// @brief Link to master device to attribute DHCP lease. static void __hello_link_device(void* a0) { - kernelPrintStr("Hello: turning up...\r"); + kernelPrintStr("Hello: linking...\r"); if (!cDev) { // open raw network device. - cDev = kernelOpenDevice("RAWNET:\\"); + cDev = kernelOpenDevice("BROADCAST:\\"); } cDev->write("+LINK", kernelStringLength("+LINK")); @@ -77,7 +77,7 @@ static void __hello_get_hmch(void* a0) static void __hello_unlink_device(void* a0) { - kernelPrintStr("Hello: shutting down...\r"); + kernelPrintStr("Hello: unlinking...\r"); if (cDev) { -- cgit v1.2.3