From 117e1e8244f5943ca84c37d2a0ff4711cd795852 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Fri, 14 May 2010 19:32:14 +0000 Subject: [PATCH] ide: make a table 'const' Signed-off-by: Blue Swirl --- hw/ide/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/ide/core.c b/hw/ide/core.c index 075752897a..b0165bcc02 100644 --- a/hw/ide/core.c +++ b/hw/ide/core.c @@ -36,7 +36,7 @@ #define IDE_PAGE_SIZE 4096 -static int smart_attributes[][5] = { +static const int smart_attributes[][5] = { /* id, flags, val, wrst, thrsh */ { 0x01, 0x03, 0x64, 0x64, 0x06}, /* raw read */ { 0x03, 0x03, 0x64, 0x64, 0x46}, /* spin up */