mirror of
https://github.com/tiagovignatti/intel-gpu-tools.git
synced 2026-08-12 17:02:57 +00:00
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:
@@ -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"))
|
||||
|
||||
@@ -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"))
|
||||
|
||||
Reference in New Issue
Block a user