From: Noboru Iwamatsu <n_iwamatsu@jp.fujitsu.com>
To: yamahata@valinux.co.jp
Cc: xen-devel@lists.xensource.com
Subject: Re: [PATCH] pvusbback: fix the compilation error.
Date: Fri, 27 Mar 2009 12:10:15 +0900 [thread overview]
Message-ID: <49CC4397.6020801@jp.fujitsu.com> (raw)
In-Reply-To: <20090327024627.GF13054%yamahata@valinux.co.jp>
Thanks, I missed it.
Noboru
Isaku Yamahata wrote:
> pvusbback: fix the compilation error.
>
> This patch fixes the following error.
> usbstub_exit() in linux/drivers/xen/usbback/usbstab.c is called
> by __init usbback_init() so that it can't have __exit.
>
>> `usbstub_exit' referenced in section `.init.text' of drivers/built-in.o: defined in discarded section `.exit.text' of drivers/built-in.o
>
> Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
>
> diff --git a/drivers/xen/usbback/usbstub.c b/drivers/xen/usbback/usbstub.c
> --- a/drivers/xen/usbback/usbstub.c
> +++ b/drivers/xen/usbback/usbstub.c
> @@ -432,7 +432,7 @@ out:
> return err;
> }
>
> -void __exit usbstub_exit(void)
> +void usbstub_exit(void)
> {
> driver_remove_file(&usbback_usb_driver.driver,
> &driver_attr_new_vport);
>
>
prev parent reply other threads:[~2009-03-27 3:10 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-27 2:46 [PATCH] pvusbback: fix the compilation error Isaku Yamahata
2009-03-27 3:10 ` Noboru Iwamatsu [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=49CC4397.6020801@jp.fujitsu.com \
--to=n_iwamatsu@jp.fujitsu.com \
--cc=xen-devel@lists.xensource.com \
--cc=yamahata@valinux.co.jp \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.