diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-06-17 18:55:38 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-06-17 18:55:38 +0200 |
| commit | 8051ad2bd4af1f226a9751288957ee6af7e787d7 (patch) | |
| tree | 6438701e1ecb669f05954a3ac65bc850dab42634 /Drv | |
| parent | e8f7e653364e4a2d48529c07b8325a8f147cf3e9 (diff) | |
MHR-31: IMP: Add setter for Name.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'Drv')
| -rw-r--r-- | Drv/GSMDrv/GSMDrv.c | 6 | ||||
| -rw-r--r-- | Drv/VideoDrv/VideoDrv.c | 4 |
2 files changed, 6 insertions, 4 deletions
diff --git a/Drv/GSMDrv/GSMDrv.c b/Drv/GSMDrv/GSMDrv.c index 791c0678..1b7cfed6 100644 --- a/Drv/GSMDrv/GSMDrv.c +++ b/Drv/GSMDrv/GSMDrv.c @@ -7,7 +7,8 @@ #include <DDK/KernelString.h> #include <DDK/KernelPrint.h> -int __ImageStart(void) +/// @brief GSM entrypoint. +int __at_enter(void) { kernelPrintStr("GSMDrv: Starting up...\r"); @@ -16,7 +17,8 @@ int __ImageStart(void) return 0; } -int __ImageEnd(void) +/// @brief GSM 'atexit' function. +int __at_exit(void) { kernelPrintStr("GSMDrv: Shutting down...\r"); return 0; diff --git a/Drv/VideoDrv/VideoDrv.c b/Drv/VideoDrv/VideoDrv.c index 3ba104d6..fc79d2a0 100644 --- a/Drv/VideoDrv/VideoDrv.c +++ b/Drv/VideoDrv/VideoDrv.c @@ -9,13 +9,13 @@ #include <Builtins/GX/GX> -int __ImageStart(void) +int __at_enter(void) { kernelPrintStr("VideoDrv: Starting up...\r"); return 0; } -int __ImageEnd(void) +int __at_exit(void) { kernelPrintStr("VideoDrv: Shutting down...\r"); return 0; |
