summaryrefslogtreecommitdiff
path: root/src/include/device/device.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/device/device.h')
-rw-r--r--src/include/device/device.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/device/device.h b/src/include/device/device.h
index 1990454d6a..06a9245145 100644
--- a/src/include/device/device.h
+++ b/src/include/device/device.h
@@ -15,7 +15,7 @@ struct smbus_bus_operations;
/* Chip operations */
struct chip_operations {
void (*enable_dev)(struct device *dev);
- char *name;
+ const char *name;
};
#define CHIP_NAME(X) .name = X,