* grub-core/kern/ieee1275/ieee1275.c (grub_ieee1275_finddevice): Make
first argument a const pointer. * grub-core/kern/ieee1275/openfw.c (grub_children_iterate): Likewise. * include/grub/ieee1275/ieee1275.h (grub_ieee1275_finddevice): Update proto. (grub_children_iterate): Likewise. (grub_machine_mmap_iterate): Remove redundant declaration.
This commit is contained in:
parent
cc8f366887
commit
ee533335f5
4 changed files with 14 additions and 6 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/kern/ieee1275/ieee1275.c (grub_ieee1275_finddevice): Make
|
||||||
|
first argument a const pointer.
|
||||||
|
* grub-core/kern/ieee1275/openfw.c (grub_children_iterate): Likewise.
|
||||||
|
* include/grub/ieee1275/ieee1275.h (grub_ieee1275_finddevice): Update
|
||||||
|
proto.
|
||||||
|
(grub_children_iterate): Likewise.
|
||||||
|
(grub_machine_mmap_iterate): Remove redundant declaration.
|
||||||
|
|
||||||
2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
|
2011-12-13 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
* grub-core/commands/acpi.c (grub_acpi_create_ebda) [!x86]: Disable.
|
* grub-core/commands/acpi.c (grub_acpi_create_ebda) [!x86]: Disable.
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
grub_ieee1275_finddevice (char *name, grub_ieee1275_phandle_t *phandlep)
|
grub_ieee1275_finddevice (const char *name, grub_ieee1275_phandle_t *phandlep)
|
||||||
{
|
{
|
||||||
struct find_device_args
|
struct find_device_args
|
||||||
{
|
{
|
||||||
|
|
|
@ -34,7 +34,7 @@ enum grub_ieee1275_parse_type
|
||||||
|
|
||||||
/* Walk children of 'devpath', calling hook for each. */
|
/* Walk children of 'devpath', calling hook for each. */
|
||||||
int
|
int
|
||||||
grub_children_iterate (char *devpath,
|
grub_children_iterate (const char *devpath,
|
||||||
int (*hook) (struct grub_ieee1275_devalias *alias))
|
int (*hook) (struct grub_ieee1275_devalias *alias))
|
||||||
{
|
{
|
||||||
grub_ieee1275_phandle_t dev;
|
grub_ieee1275_phandle_t dev;
|
||||||
|
|
|
@ -125,7 +125,7 @@ extern void EXPORT_FUNC(grub_ieee1275_set_flag) (enum grub_ieee1275_flag flag);
|
||||||
|
|
||||||
|
|
||||||
void EXPORT_FUNC(grub_ieee1275_init) (void);
|
void EXPORT_FUNC(grub_ieee1275_init) (void);
|
||||||
int EXPORT_FUNC(grub_ieee1275_finddevice) (char *name,
|
int EXPORT_FUNC(grub_ieee1275_finddevice) (const char *name,
|
||||||
grub_ieee1275_phandle_t *phandlep);
|
grub_ieee1275_phandle_t *phandlep);
|
||||||
int EXPORT_FUNC(grub_ieee1275_get_property) (grub_ieee1275_phandle_t phandle,
|
int EXPORT_FUNC(grub_ieee1275_get_property) (grub_ieee1275_phandle_t phandle,
|
||||||
const char *property, void *buf,
|
const char *property, void *buf,
|
||||||
|
@ -184,10 +184,8 @@ int EXPORT_FUNC(grub_ieee1275_milliseconds) (grub_uint32_t *msecs);
|
||||||
|
|
||||||
int EXPORT_FUNC(grub_devalias_iterate)
|
int EXPORT_FUNC(grub_devalias_iterate)
|
||||||
(int (*hook) (struct grub_ieee1275_devalias *alias));
|
(int (*hook) (struct grub_ieee1275_devalias *alias));
|
||||||
int EXPORT_FUNC(grub_children_iterate) (char *devpath,
|
int EXPORT_FUNC(grub_children_iterate) (const char *devpath,
|
||||||
int (*hook) (struct grub_ieee1275_devalias *alias));
|
int (*hook) (struct grub_ieee1275_devalias *alias));
|
||||||
grub_err_t EXPORT_FUNC(grub_machine_mmap_iterate)
|
|
||||||
(int NESTED_FUNC_ATTR (*hook) (grub_uint64_t, grub_uint64_t, grub_uint32_t));
|
|
||||||
int EXPORT_FUNC(grub_claimmap) (grub_addr_t addr, grub_size_t size);
|
int EXPORT_FUNC(grub_claimmap) (grub_addr_t addr, grub_size_t size);
|
||||||
|
|
||||||
int
|
int
|
||||||
|
|
Loading…
Reference in a new issue