mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
cb3ce95401
In order to make it easier to move on to dropping common.h from code directly, remove common.h inclusion from the rest of the header file which had been including it. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com>
19 lines
326 B
C
19 lines
326 B
C
/* Glue between u-boot and upstream zlib */
|
|
#ifndef __GLUE_ZLIB_H__
|
|
#define __GLUE_ZLIB_H__
|
|
|
|
#include <linux/compiler.h>
|
|
#include <asm/unaligned.h>
|
|
#include <watchdog.h>
|
|
#include "u-boot/zlib.h"
|
|
|
|
/* avoid conflicts */
|
|
#undef OFF
|
|
#undef ASMINF
|
|
#undef POSTINC
|
|
#undef NO_GZIP
|
|
#define GUNZIP
|
|
#undef STDC
|
|
#undef NO_ERRNO_H
|
|
|
|
#endif
|