summaryrefslogtreecommitdiffhomepage
path: root/Drivers/Hello/Hello.c
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-07-10 10:14:07 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-07-10 10:14:07 +0200
commitd108de7b8ad0f92bdc9f3951e762c09c762fd174 (patch)
tree161ce51a5efeeecd40278e806b343dc206e272fe /Drivers/Hello/Hello.c
parent5ce8823643f02e4d04c80e2dcf944b442b2ba69b (diff)
MHR-36: Expose POWER64 VMS and common StackFrame across platforms. And code refactors.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Drivers/Hello/Hello.c')
-rw-r--r--Drivers/Hello/Hello.c6
1 files changed, 3 insertions, 3 deletions
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)
{