Remove building with NOCRYPTO option
[minix.git] / minix / kernel / arch / earm / do_padconf.c
blob89bbb9233d878d148d5674215bad4ca1356413ac
1 #include "kernel/system.h"
2 #include <minix/endpoint.h>
4 #if USE_PADCONF
6 /* get arch specific arch_padconf_set() */
7 #include "bsp_padconf.h"
9 /*===========================================================================*
10 * do_padconf *
11 *===========================================================================*/
12 int do_padconf(struct proc *caller_ptr, message *m_ptr)
14 return bsp_padconf_set(m_ptr->PADCONF_PADCONF, m_ptr->PADCONF_MASK,
15 m_ptr->PADCONF_VALUE);
18 #endif /* USE_PADCONF */