aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/STM32F1xx/SPI/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'testhal/STM32/STM32F1xx/SPI/main.c')
0 files changed, 0 insertions, 0 deletions
='n41' href='#n41'>41
#include <xen/lib.h>       /* for printk() used in stubs */
#include <xen/types.h>
#include <xen/kexec.h>
#include <public/kexec.h>

int machine_kexec_load(int type, int slot, xen_kexec_image_t *image)
{
    printk("STUB: " __FILE__ ": %s: not implemented\n", __FUNCTION__);
    return -1;
}

void machine_kexec_unload(int type, int slot, xen_kexec_image_t *image)
{
    printk("STUB: " __FILE__ ": %s: not implemented\n", __FUNCTION__);
}

void machine_reboot_kexec(xen_kexec_image_t *image)
{
    printk("STUB: " __FILE__ ": %s: not implemented\n", __FUNCTION__);
}

void machine_kexec(xen_kexec_image_t *image)
{
    printk("STUB: " __FILE__ ": %s: not implemented\n", __FUNCTION__);
}

int machine_kexec_get(xen_kexec_image_t *image)
{
    printk("STUB: " __FILE__ ": %s: not implemented\n", __FUNCTION__);
    return -1;
}

/*
 * Local variables:
 * mode: C
 * c-set-style: "BSD"
 * c-basic-offset: 4
 * tab-width: 4
 * indent-tabs-mode: nil
 * End:
 */