]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - Documentation/feature-removal-schedule.txt
Merge git://git.kernel.org/pub/scm/linux/kernel/git/lethal/sh-2.6
[linux-2.6-omap-h63xx.git] / Documentation / feature-removal-schedule.txt
index 3d2d0c29f02735e01e1acbc3bf3d1c97440352f2..05d71b4b9430f9fb2f9dcc932e0f95deac759555 100644 (file)
@@ -287,11 +287,19 @@ Who:      Glauber Costa <gcosta@redhat.com>
 
 ---------------------------
 
-What:  old style serial driver for ColdFire (CONFIG_SERIAL_COLDFIRE)
-When:  2.6.28
-Why:   This driver still uses the old interface and has been replaced
-       by CONFIG_SERIAL_MCF.
-Who:   Sebastian Siewior <sebastian@breakpoint.cc>
+What:  remove HID compat support
+When:  2.6.29
+Why:   needed only as a temporary solution until distros fix themselves up
+Who:   Jiri Slaby <jirislaby@gmail.com>
+
+---------------------------
+
+What: print_fn_descriptor_symbol()
+When: October 2009
+Why:  The %pF vsprintf format provides the same functionality in a
+      simpler way.  print_fn_descriptor_symbol() is deprecated but
+      still present to give out-of-tree modules time to change.
+Who:  Bjorn Helgaas <bjorn.helgaas@hp.com>
 
 ---------------------------
 
@@ -351,3 +359,11 @@ Why:  The 2.6 kernel supports direct writing to ide CD drives, which
       eliminates the need for ide-scsi. The new method is more
       efficient in every way.
 Who:  FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
+
+---------------------------
+
+What:  i2c_attach_client(), i2c_detach_client(), i2c_driver->detach_client()
+When:  2.6.29 (ideally) or 2.6.30 (more likely)
+Why:   Deprecated by the new (standard) device driver binding model. Use
+       i2c_driver->probe() and ->remove() instead.
+Who:   Jean Delvare <khali@linux-fr.org>