Allow libpayload to use an OXPCIe 952 card on systems without
[coreboot.git] / payloads / libpayload / include / libpayload.h
index 2efb88e3281edd8aa3eb75e12003132eb27a54b9..74fb79a4ae7a23e1417ddb8487a61f608c5d03ff 100644 (file)
@@ -153,7 +153,6 @@ int keyboard_set_layout(char *country);
  * @{
  */
 void serial_init(void);
-void serial_hardware_init(int port, int speed, int word_bits, int parity, int stop_bits);
 void serial_putchar(unsigned int c);
 int serial_havechar(void);
 int serial_getchar(void);
@@ -194,6 +193,7 @@ void video_console_set_cursor(unsigned int cursorx, unsigned int cursory);
 /** @} */
 
 /* drivers/option.c */
+void fix_options_checksum(void);
 int get_option(void *dest, char *name);
 
 /**
@@ -342,10 +342,6 @@ int lfverify(struct LAR *lar, const char *filename);
 struct LFILE *lfopen(struct LAR *lar, const char *filename);
 int lfread(void *ptr, size_t size, size_t nmemb, struct LFILE *stream);
 
-#define SEEK_SET 0 /**< The seek offset is absolute. */
-#define SEEK_CUR 1 /**< The seek offset is against the current position. */
-#define SEEK_END 2 /**< The seek offset is against the end of the file. */
-
 int lfseek(struct LFILE *stream, long offset, int whence);
 int lfclose(struct LFILE *file);
 /** @} */