/* Max GPIO pins the chipset can have */
        uint ngpio;
 
+       /* GPO_BLINK is available on this chipset */
+       bool have_blink;
+
        /* Whether the chipset has GPIO in GPE0_STS in the PM IO region */
        bool uses_gpe0;
 
                                        int val)
 {
        /* Disable blink hardware which is available for GPIOs from 0 to 31. */
-       if (nr < 32)
+       if (nr < 32 && ichx_priv.desc->have_blink)
                ichx_write_bit(GPO_BLINK, nr, 0, 0);
 
        /* Set GPIO output value. */
        .uses_gpe0 = true,
 
        .ngpio = 50,
+       .have_blink = true,
 };
 
 /* Intel 3100 */
 /* ICH7 and ICH8-based */
 static struct ichx_desc ich7_desc = {
        .ngpio = 50,
+       .have_blink = true,
 };
 
 /* ICH9-based */
 static struct ichx_desc ich9_desc = {
        .ngpio = 61,
+       .have_blink = true,
 };
 
 /* ICH10-based - Consumer/corporate versions have different amount of GPIO */
 static struct ichx_desc ich10_cons_desc = {
        .ngpio = 61,
+       .have_blink = true,
 };
 static struct ichx_desc ich10_corp_desc = {
        .ngpio = 72,
+       .have_blink = true,
 };
 
 /* Intel 5 series, 6 series, 3400 series, and C200 series */