diff options
Diffstat (limited to 'os/hal/src')
-rw-r--r-- | os/hal/src/hal_pal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/hal/src/hal_pal.c b/os/hal/src/hal_pal.c index 3861ebae3..ab07b5216 100644 --- a/os/hal/src/hal_pal.c +++ b/os/hal/src/hal_pal.c @@ -62,7 +62,7 @@ *
* @special
*/
-ioportmask_t palReadBus(IOBus *bus) {
+ioportmask_t palReadBus(const IOBus *bus) {
osalDbgCheck((bus != NULL) && (bus->offset < PAL_IOPORTS_WIDTH));
@@ -87,7 +87,7 @@ ioportmask_t palReadBus(IOBus *bus) { *
* @special
*/
-void palWriteBus(IOBus *bus, ioportmask_t bits) {
+void palWriteBus(const IOBus *bus, ioportmask_t bits) {
osalDbgCheck((bus != NULL) && (bus->offset < PAL_IOPORTS_WIDTH));
@@ -110,7 +110,7 @@ void palWriteBus(IOBus *bus, ioportmask_t bits) { *
* @special
*/
-void palSetBusMode(IOBus *bus, iomode_t mode) {
+void palSetBusMode(const IOBus *bus, iomode_t mode) {
osalDbgCheck((bus != NULL) && (bus->offset < PAL_IOPORTS_WIDTH));
|