Drop CONFIG_CHIP_NAME. Those config statements in Config.lb should
[coreboot.git] / src / include / device / device.h
index 4109c00c112b7c89023d67fdbb8f880ad8457af4..7d7a6bc15a9480cbbf97bde3a5d2abda1ce4f0d0 100644 (file)
@@ -15,16 +15,10 @@ struct smbus_bus_operations;
 /* Chip operations */
 struct chip_operations {
        void (*enable_dev)(struct device *dev);
-#if CONFIG_CHIP_NAME == 1
        char *name;
-#endif
 };
 
-#if CONFIG_CHIP_NAME == 1
 #define CHIP_NAME(X) .name = X,
-#else
-#define CHIP_NAME(X)
-#endif
 
 struct bus;