aboutsummaryrefslogtreecommitdiffstats
path: root/heimdall
diff options
context:
space:
mode:
authorBenjamin Dobell <benjamin.dobell+git@glassechidna.com.au>2013-05-11 13:36:05 +1000
committerBenjamin Dobell <benjamin.dobell+git@glassechidna.com.au>2013-05-11 13:36:05 +1000
commitc9e4f764c2cc81f3ab223116e73340ea33e1abcb (patch)
tree716fa4f600eaa158280b46de93fdfbe345f0390e /heimdall
parent59cc6133d532763dbb11592e15551ddf59c14773 (diff)
downloadexternal_heimdall-c9e4f764c2cc81f3ab223116e73340ea33e1abcb.zip
external_heimdall-c9e4f764c2cc81f3ab223116e73340ea33e1abcb.tar.gz
external_heimdall-c9e4f764c2cc81f3ab223116e73340ea33e1abcb.tar.bz2
Removed bad Galaxy Camera device identifier, as it was the PID for regular boot, not download mode.
Diffstat (limited to 'heimdall')
-rw-r--r--heimdall/source/BridgeManager.cpp3
-rw-r--r--heimdall/source/BridgeManager.h5
2 files changed, 3 insertions, 5 deletions
diff --git a/heimdall/source/BridgeManager.cpp b/heimdall/source/BridgeManager.cpp
index 35be1fd..5e23560 100644
--- a/heimdall/source/BridgeManager.cpp
+++ b/heimdall/source/BridgeManager.cpp
@@ -63,8 +63,7 @@ using namespace Heimdall;
const DeviceIdentifier BridgeManager::supportedDevices[BridgeManager::kSupportedDeviceCount] = {
DeviceIdentifier(BridgeManager::kVidSamsung, BridgeManager::kPidGalaxyS),
DeviceIdentifier(BridgeManager::kVidSamsung, BridgeManager::kPidGalaxyS2),
- DeviceIdentifier(BridgeManager::kVidSamsung, BridgeManager::kPidDroidCharge),
- DeviceIdentifier(BridgeManager::kVidSamsung, BridgeManager::kPidGalaxyCamera)
+ DeviceIdentifier(BridgeManager::kVidSamsung, BridgeManager::kPidDroidCharge)
};
enum
diff --git a/heimdall/source/BridgeManager.h b/heimdall/source/BridgeManager.h
index 4402710..4f3660d 100644
--- a/heimdall/source/BridgeManager.h
+++ b/heimdall/source/BridgeManager.h
@@ -56,7 +56,7 @@ namespace Heimdall
enum
{
- kSupportedDeviceCount = 4
+ kSupportedDeviceCount = 3
};
enum
@@ -80,8 +80,7 @@ namespace Heimdall
{
kPidGalaxyS = 0x6601,
kPidGalaxyS2 = 0x685D,
- kPidDroidCharge = 0x68C3,
- kPidGalaxyCamera = 0x6860 // Is this necessary?
+ kPidDroidCharge = 0x68C3
};
enum class UsbLogLevel