mirror of
https://github.com/ivoszbg/uniLoader.git
synced 2024-11-24 21:20:08 +00:00
81d26edaa3
arch: aarch64: Load addresses via page + offset arch: aarch64: Align the TEXT region drivers: Introduce an empty framework board: Rework to be PIC Signed-off-by: Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
14 lines
308 B
C
14 lines
308 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Drivers registration framework
|
|
* Copyright (c) 2024, Ivaylo Ivanov <ivo.ivanov.ivanov1@gmail.com>
|
|
*/
|
|
#include <drivers/framework.h>
|
|
#include <stddef.h>
|
|
|
|
// Max number of drivers that can be registered
|
|
#define MAX_DRIVERS 256
|
|
#define DRIVER_NAME_LEN 20
|
|
|
|
// TODO
|