* grub-core/net/i386/pc/pxe.c (grub_pxe_recv): Fix declaration.
(grub_pxe_send): Likewise. (GRUB_MOD_INIT): Fix types.
This commit is contained in:
parent
40ea05dee4
commit
77c0840ba6
2 changed files with 9 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2011-06-25 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* grub-core/net/i386/pc/pxe.c (grub_pxe_recv): Fix declaration.
|
||||||
|
(grub_pxe_send): Likewise.
|
||||||
|
(GRUB_MOD_INIT): Fix types.
|
||||||
|
|
||||||
2011-06-24 Szymon Janc <szymon@janc.net.pl>
|
2011-06-24 Szymon Janc <szymon@janc.net.pl>
|
||||||
|
|
||||||
* grub-core/io/xzio.c: Fix code style issues
|
* grub-core/io/xzio.c: Fix code style issues
|
||||||
|
|
|
@ -305,14 +305,14 @@ static struct grub_fs grub_pxefs_fs =
|
||||||
};
|
};
|
||||||
|
|
||||||
static grub_ssize_t
|
static grub_ssize_t
|
||||||
grub_pxe_recv (struct grub_net_card *dev __attribute__ ((unused)),
|
grub_pxe_recv (const struct grub_net_card *dev __attribute__ ((unused)),
|
||||||
struct grub_net_buff *buf __attribute__ ((unused)))
|
struct grub_net_buff *buf __attribute__ ((unused)))
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static grub_err_t
|
static grub_err_t
|
||||||
grub_pxe_send (struct grub_net_card *dev __attribute__ ((unused)),
|
grub_pxe_send (const struct grub_net_card *dev __attribute__ ((unused)),
|
||||||
struct grub_net_buff *buf __attribute__ ((unused)))
|
struct grub_net_buff *buf __attribute__ ((unused)))
|
||||||
{
|
{
|
||||||
return grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET, "not implemented");
|
return grub_error (GRUB_ERR_NOT_IMPLEMENTED_YET, "not implemented");
|
||||||
|
@ -424,7 +424,7 @@ GRUB_MOD_INIT(pxe)
|
||||||
{
|
{
|
||||||
struct grub_pxe_bangpxe *pxenv;
|
struct grub_pxe_bangpxe *pxenv;
|
||||||
struct grub_pxenv_get_cached_info ci;
|
struct grub_pxenv_get_cached_info ci;
|
||||||
struct grub_net_bootp_ack *bp;
|
struct grub_net_bootp_packet *bp;
|
||||||
char *buf;
|
char *buf;
|
||||||
|
|
||||||
pxenv = grub_pxe_scan ();
|
pxenv = grub_pxe_scan ();
|
||||||
|
|
Loading…
Add table
Reference in a new issue