| Bernhard Walle | 69ac9cd | 2008-06-27 13:12:54 +0200 | [diff] [blame] | 1 | /* | 
 | 2 |  * include/linux/firmware-map.h: | 
 | 3 |  *  Copyright (C) 2008 SUSE LINUX Products GmbH | 
| Bernhard Walle | 97bef7d | 2009-02-18 14:48:40 -0800 | [diff] [blame] | 4 |  *  by Bernhard Walle <bernhard.walle@gmx.de> | 
| Bernhard Walle | 69ac9cd | 2008-06-27 13:12:54 +0200 | [diff] [blame] | 5 |  * | 
 | 6 |  * This program is free software; you can redistribute it and/or modify | 
 | 7 |  * it under the terms of the GNU General Public License v2.0 as published by | 
 | 8 |  * the Free Software Foundation | 
 | 9 |  * | 
 | 10 |  * This program is distributed in the hope that it will be useful, | 
 | 11 |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
 | 12 |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
 | 13 |  * GNU General Public License for more details. | 
 | 14 |  * | 
 | 15 |  */ | 
 | 16 | #ifndef _LINUX_FIRMWARE_MAP_H | 
 | 17 | #define _LINUX_FIRMWARE_MAP_H | 
 | 18 |  | 
 | 19 | #include <linux/list.h> | 
 | 20 | #include <linux/kobject.h> | 
 | 21 |  | 
 | 22 | /* | 
 | 23 |  * provide a dummy interface if CONFIG_FIRMWARE_MEMMAP is disabled | 
 | 24 |  */ | 
 | 25 | #ifdef CONFIG_FIRMWARE_MEMMAP | 
 | 26 |  | 
| Yinghai Lu | 3b0fde0 | 2009-06-16 15:31:16 -0700 | [diff] [blame] | 27 | int firmware_map_add(u64 start, u64 end, const char *type); | 
 | 28 | int firmware_map_add_early(u64 start, u64 end, const char *type); | 
| Bernhard Walle | 69ac9cd | 2008-06-27 13:12:54 +0200 | [diff] [blame] | 29 |  | 
 | 30 | #else /* CONFIG_FIRMWARE_MEMMAP */ | 
 | 31 |  | 
| Yinghai Lu | 3b0fde0 | 2009-06-16 15:31:16 -0700 | [diff] [blame] | 32 | static inline int firmware_map_add(u64 start, u64 end, const char *type) | 
| Bernhard Walle | 69ac9cd | 2008-06-27 13:12:54 +0200 | [diff] [blame] | 33 | { | 
 | 34 | 	return 0; | 
 | 35 | } | 
 | 36 |  | 
| Yinghai Lu | 3b0fde0 | 2009-06-16 15:31:16 -0700 | [diff] [blame] | 37 | static inline int firmware_map_add_early(u64 start, u64 end, const char *type) | 
| Bernhard Walle | 69ac9cd | 2008-06-27 13:12:54 +0200 | [diff] [blame] | 38 | { | 
 | 39 | 	return 0; | 
 | 40 | } | 
 | 41 |  | 
 | 42 | #endif /* CONFIG_FIRMWARE_MEMMAP */ | 
 | 43 |  | 
 | 44 | #endif /* _LINUX_FIRMWARE_MAP_H */ |