S:     Odd fixes
 F:     drivers/block/floppy.c
 
+FMC SUBSYSTEM
+M:     Alessandro Rubini <rubini@gnudd.com>
+W:     http://www.ohwr.org/projects/fmc-bus
+S:     Supported
+F:     drivers/fmc/
+F:     include/linux/fmc*.h
+F:     include/linux/ipmi-fru.h
+K:     fmc_d.*register
+
 FPU EMULATOR
 M:     Bill Metzenthen <billm@melbpc.org.au>
 W:     http://floatingpoint.sourceforge.net/emulator/index.html
 
 
 source "drivers/reset/Kconfig"
 
+source "drivers/fmc/Kconfig"
+
 endmenu
 
 obj-$(CONFIG_VME_BUS)          += vme/
 obj-$(CONFIG_IPACK_BUS)                += ipack/
 obj-$(CONFIG_NTB)              += ntb/
+obj-$(CONFIG_FMC)              += fmc/
 
--- /dev/null
+#
+# FMC (ANSI-VITA 57.1) bus support
+#
+
+menuconfig FMC
+       tristate "FMC support"
+       help
+
+         FMC (FPGA Mezzanine Carrier) is a mechanical and electrical
+         standard for mezzanine cards that plug into a carrier board.
+         This kernel subsystem supports the matching between carrier
+         and mezzanine based on identifiers stored in the internal I2C
+         EEPROM, as well as having carrier-independent drivers.
+
+         The framework was born outside of the kernel and at this time
+         the off-tree code base is more complete.  Code and documentation
+         is at git://ohwr.org/fmc-projects/fmc-bus.git .
 
--- /dev/null
+
+obj-$(CONFIG_FMC) += fmc.o
+
+fmc-y = fmc-core.o
 
--- /dev/null
+/* Temporary placeholder so the empty code can build */
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/init.h>
+#include <linux/device.h>
+
+static struct bus_type fmc_bus_type = {
+       .name = "fmc",
+};
+
+static int fmc_init(void)
+{
+       return bus_register(&fmc_bus_type);
+}
+
+static void fmc_exit(void)
+{
+       bus_unregister(&fmc_bus_type);
+}
+
+module_init(fmc_init);
+module_exit(fmc_exit);
+
+MODULE_LICENSE("GPL");