30 lines
468 B
C
30 lines
468 B
C
/* Implements sys_padconf() for the BCM2835. */
|
|
|
|
#include "kernel/kernel.h"
|
|
#include "arch_proto.h"
|
|
#include <sys/types.h>
|
|
#include <machine/cpu.h>
|
|
#include <minix/mmio.h>
|
|
#include <minix/padconf.h>
|
|
#include <minix/board.h>
|
|
#include <minix/com.h>
|
|
#include <assert.h>
|
|
#include <io.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#include "bsp_padconf.h"
|
|
|
|
|
|
int
|
|
bsp_padconf_set(u32_t padconf, u32_t mask, u32_t value)
|
|
{
|
|
return OK;
|
|
}
|
|
|
|
void
|
|
bsp_padconf_init(void)
|
|
{
|
|
return;
|
|
}
|