7e11828c6e
Created a new directory called bsp (board support package) to hold board or system on chip specific code. The idea is the following. Change-Id: Ica5886806940facae2fa5492fcc938b3c2b989be
18 lines
563 B
C
18 lines
563 B
C
#include "kernel/system.h"
|
|
#include <minix/endpoint.h>
|
|
|
|
#if USE_PADCONF
|
|
|
|
/* get arch specific arch_padconf_set() */
|
|
#include "bsp_padconf.h"
|
|
|
|
/*===========================================================================*
|
|
* do_padconf *
|
|
*===========================================================================*/
|
|
int do_padconf(struct proc *caller_ptr, message *m_ptr)
|
|
{
|
|
return bsp_padconf_set(m_ptr->PADCONF_PADCONF, m_ptr->PADCONF_MASK,
|
|
m_ptr->PADCONF_VALUE);
|
|
}
|
|
|
|
#endif /* USE_PADCONF */
|