blob: 64ff4ac161ee3e78db62a73c8c694ac863360f43 [file] [log] [blame]
/*
* Copyright 2014 Google Inc.
*
* See file CREDITS for list of people who contributed to this
* project.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but without any warranty; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*/
#include <stdio.h>
#include <vboot_api.h>
VbError_t VbExDisplayInit(uint32_t *width, uint32_t *height)
{
printf("%s:%d invoked\n", __func__, __LINE__);
return VBERROR_SUCCESS;
}
VbError_t VbExDisplayBacklight(uint8_t enable)
{
printf("%s:%d invoked\n", __func__, __LINE__);
return VBERROR_SUCCESS;
}
VbError_t VbExDisplayScreen(uint32_t screen_type, uint32_t locale)
{
printf("%s:%d invoked\n", __func__, __LINE__);
return VBERROR_SUCCESS;
}
VbError_t VbExDisplayImage(uint32_t x, uint32_t y,
void *buffer, uint32_t buffersize)
{
printf("%s:%d invoked\n", __func__, __LINE__);
return VBERROR_SUCCESS;
}
VbError_t VbExDisplaySetDimension(uint32_t width, uint32_t height)
{
printf("%s:%d invoked\n", __func__, __LINE__);
return VBERROR_SUCCESS;
}
VbError_t VbExDisplayDebugInfo(const char *info_str)
{
printf("%s:%d invoked\n", __func__, __LINE__);
return VBERROR_SUCCESS;
}