toos/intel_iosf_sb_*: Fix DPIO IOSF SB port number

The correct port is 0x12, not 0x13 which is actually GPIO_NC.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
This commit is contained in:
Ville Syrjälä 2015-02-05 16:17:06 +02:00
parent ac28ecefe0
commit 0129b02c7b
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ int main(int argc, char *argv[])
else if (!strcasecmp(argv[1], "nc"))
port = 0x11;
else if (!strcasecmp(argv[1], "dpio"))
port = 0x13;
port = 0x12;
else if (!strcasecmp(argv[1], "gpio_nc"))
port = 0x13;
else if (!strcasecmp(argv[1], "cck"))

View File

@ -54,7 +54,7 @@ int main(int argc, char** argv)
else if (!strcasecmp(argv[1], "nc"))
port = 0x11;
else if (!strcasecmp(argv[1], "dpio"))
port = 0x13;
port = 0x12;
else if (!strcasecmp(argv[1], "gpio_nc"))
port = 0x13;
else if (!strcasecmp(argv[1], "cck"))