diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-21 12:25:15 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-21 12:25:15 -0500 |
commit | 08a4ecee986dd98e86090ff5faac4782b6765aed (patch) | |
tree | 74df5de49f38c432a6a18303b0c6d834fd09028f /Documentation | |
parent | ba93c6297b9cfad5a70b5e5ed13c9dbead6601d3 (diff) | |
parent | b3229087c5e08589cea4f5040dab56f7dc11332a (diff) |
Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/driver-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/gregkh/driver-2.6: (23 commits)
[PATCH] sysfs: fix a kobject leak in sysfs_add_link on the error path
[PATCH] sysfs: don't export dir symbols
[PATCH] get_cpu_sysdev() signedness fix
[PATCH] kobject_add_dir
[PATCH] debugfs: Add debugfs_create_blob() helper for exporting binary data
[PATCH] sysfs: fix problem with duplicate sysfs directories and files
[PATCH] Kobject: kobject.h: fix a typo
[PATCH] Kobject: provide better warning messages when people do stupid things
[PATCH] Driver core: add macros notice(), dev_notice()
[PATCH] firmware: fix BUG: in fw_realloc_buffer
[PATCH] sysfs: kzalloc conversion
[PATCH] fix module sysfs files reference counting
[PATCH] add EXPORT_SYMBOL_GPL_FUTURE() to USB subsystem
[PATCH] add EXPORT_SYMBOL_GPL_FUTURE() to RCU subsystem
[PATCH] add EXPORT_SYMBOL_GPL_FUTURE()
[PATCH] Clean up module.c symbol searching logic
[PATCH] kobj_map semaphore to mutex conversion
[PATCH] kref: avoid an atomic operation in kref_put()
[PATCH] handle errors returned by platform_get_irq*()
[PATCH] driver core: platform_get_irq*(): return -ENXIO on error
...
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/feature-removal-schedule.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index 28a31c5e2289..afeaf6218ea2 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
@@ -196,3 +196,21 @@ Why: Board specific code doesn't build anymore since ~2.6.0 and no | |||
196 | users have complained indicating there is no more need for these | 196 | users have complained indicating there is no more need for these |
197 | boards. This should really be considered a last call. | 197 | boards. This should really be considered a last call. |
198 | Who: Ralf Baechle <ralf@linux-mips.org> | 198 | Who: Ralf Baechle <ralf@linux-mips.org> |
199 | |||
200 | --------------------------- | ||
201 | |||
202 | What: USB driver API moves to EXPORT_SYMBOL_GPL | ||
203 | When: Febuary 2008 | ||
204 | Files: include/linux/usb.h, drivers/usb/core/driver.c | ||
205 | Why: The USB subsystem has changed a lot over time, and it has been | ||
206 | possible to create userspace USB drivers using usbfs/libusb/gadgetfs | ||
207 | that operate as fast as the USB bus allows. Because of this, the USB | ||
208 | subsystem will not be allowing closed source kernel drivers to | ||
209 | register with it, after this grace period is over. If anyone needs | ||
210 | any help in converting their closed source drivers over to use the | ||
211 | userspace filesystems, please contact the | ||
212 | linux-usb-devel@lists.sourceforge.net mailing list, and the developers | ||
213 | there will be glad to help you out. | ||
214 | Who: Greg Kroah-Hartman <gregkh@suse.de> | ||
215 | |||
216 | --------------------------- | ||