Re: [PATCH 1/2] amd76x_pm: C2 powersaving for AMD K7

From: Andrew Morton
Date: Wed Jan 11 2006 - 06:20:04 EST


Joerg Sommrey <jo@xxxxxxxxxx> wrote:
>
> +static void
> +config_amd768_C2(int enable)
> +{
> + unsigned char regbyte;
> +
> + /* Set C2 options in DevB:3x4F, page 100 in AMD-768 doc */
> + pci_read_config_byte(pdev_sb, 0x4F, &regbyte);
> + if(enable)
> + regbyte |= C2EN;
> + else
> + regbyte ^= C2EN;

&= ?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/