Blame view

include/linux/firmware-map.h 1.17 KB
69ac9cd62   Bernhard Walle   sysfs: add /sys/f...
1
2
3
  /*
   * include/linux/firmware-map.h:
   *  Copyright (C) 2008 SUSE LINUX Products GmbH
97bef7dd0   Bernhard Walle   Bernhard has moved
4
   *  by Bernhard Walle <bernhard.walle@gmx.de>
69ac9cd62   Bernhard Walle   sysfs: add /sys/f...
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License v2.0 as published by
   * the Free Software Foundation
   *
   * 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.
   *
   */
  #ifndef _LINUX_FIRMWARE_MAP_H
  #define _LINUX_FIRMWARE_MAP_H
  
  #include <linux/list.h>
69ac9cd62   Bernhard Walle   sysfs: add /sys/f...
20
21
22
23
24
  
  /*
   * provide a dummy interface if CONFIG_FIRMWARE_MEMMAP is disabled
   */
  #ifdef CONFIG_FIRMWARE_MEMMAP
3b0fde0fa   Yinghai Lu   firmware_map: fix...
25
  int firmware_map_add_early(u64 start, u64 end, const char *type);
d96ae5309   akpm@linux-foundation.org   memory-hotplug: c...
26
  int firmware_map_add_hotplug(u64 start, u64 end, const char *type);
69ac9cd62   Bernhard Walle   sysfs: add /sys/f...
27
28
  
  #else /* CONFIG_FIRMWARE_MEMMAP */
d96ae5309   akpm@linux-foundation.org   memory-hotplug: c...
29
  static inline int firmware_map_add_early(u64 start, u64 end, const char *type)
69ac9cd62   Bernhard Walle   sysfs: add /sys/f...
30
31
32
  {
  	return 0;
  }
d96ae5309   akpm@linux-foundation.org   memory-hotplug: c...
33
  static inline int firmware_map_add_hotplug(u64 start, u64 end, const char *type)
69ac9cd62   Bernhard Walle   sysfs: add /sys/f...
34
35
36
37
38
39
40
  {
  	return 0;
  }
  
  #endif /* CONFIG_FIRMWARE_MEMMAP */
  
  #endif /* _LINUX_FIRMWARE_MAP_H */