Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 148483 Details for
Bug 229483
ia64: build fails in mon_bin_exit & mon_text_exit
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Upstream fix for this issue
usbmon.patch (text/plain), 1.63 KB, created by
Prarit Bhargava
on 2007-02-21 14:31:03 UTC
(
hide
)
Description:
Upstream fix for this issue
Filename:
MIME Type:
Creator:
Prarit Bhargava
Created:
2007-02-21 14:31:03 UTC
Size:
1.63 KB
patch
obsolete
>Remove __exit from mon_bin_exit & mon_text_exit. Both functions are used >in error code paths in __init functions. > >Resolves MODPOST warnings similar to: > >`mon_bin_exit' referenced in section `.init.text' of drivers/built-in.o: defined in discarded section `.exit.text' of drivers/built-in.o >`mon_text_exit' referenced in section `.init.text' of drivers/built-in.o: defined in discarded section `.exit.text' of drivers/built-in.o >make: *** [.tmp_vmlinux1] Error 1 > >Signed-off-by: Prarit Bhargava <prarit@redhat.com> > >diff --git a/drivers/usb/mon/mon_bin.c b/drivers/usb/mon/mon_bin.c >index c01dfe6..b2bedd9 100644 >--- a/drivers/usb/mon/mon_bin.c >+++ b/drivers/usb/mon/mon_bin.c >@@ -1165,7 +1165,7 @@ err_dev: > return rc; > } > >-void __exit mon_bin_exit(void) >+void mon_bin_exit(void) > { > cdev_del(&mon_bin_cdev); > unregister_chrdev_region(mon_bin_dev0, MON_BIN_MAX_MINOR); >diff --git a/drivers/usb/mon/mon_text.c b/drivers/usb/mon/mon_text.c >index d38a127..494ee3b 100644 >--- a/drivers/usb/mon/mon_text.c >+++ b/drivers/usb/mon/mon_text.c >@@ -520,7 +520,7 @@ int __init mon_text_init(void) > return 0; > } > >-void __exit mon_text_exit(void) >+void mon_text_exit(void) > { > debugfs_remove(mon_dir); > } >diff --git a/drivers/usb/mon/usb_mon.h b/drivers/usb/mon/usb_mon.h >index 4f949ce..efdfd89 100644 >--- a/drivers/usb/mon/usb_mon.h >+++ b/drivers/usb/mon/usb_mon.h >@@ -57,9 +57,9 @@ void mon_text_del(struct mon_bus *mbus); > // void mon_bin_add(struct mon_bus *); > > int __init mon_text_init(void); >-void __exit mon_text_exit(void); >+void mon_text_exit(void); > int __init mon_bin_init(void); >-void __exit mon_bin_exit(void); >+void mon_bin_exit(void); > > /* > * DMA interface.
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 229483
: 148483 |
148487