Skip to content

Commit 58e17d7

Browse files
committed
Change to Framework branding
Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent 3d10d95 commit 58e17d7

5 files changed

Lines changed: 10 additions & 12 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ Driver Name: oem2.inf
3838
Microsoft PnP Utility
3939
4040
Instance ID: ACPI\FRMWC006\1
41-
Device Description: Sensors Combo Driver - ALS, Accelerometer, Orientation
41+
Device Description: Sensor Driver - ALS, Accelerometer, Orientation
4242
Class Name: Sensor
4343
Class GUID: {5175d334-c371-4806-b3ba-71fd53c9258d}
44-
Manufacturer Name: Manufacturer Name
44+
Manufacturer Name: Framework Computer Inc
4545
Status: Started
4646
Driver Name: oem194.inf
4747
```

SensorsComboDriver/AlsClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ AlsDevice::Initialize(
166166
&(m_pEnumerationProperties->List[SENSOR_TYPE_GUID].Value));
167167

168168
m_pEnumerationProperties->List[SENSOR_MANUFACTURER].Key = DEVPKEY_Sensor_Manufacturer;
169-
InitPropVariantFromString(L"Manufacturer name",
169+
InitPropVariantFromString(L"Framework Computer Inc",
170170
&(m_pEnumerationProperties->List[SENSOR_MANUFACTURER].Value));
171171

172172
m_pEnumerationProperties->List[SENSOR_MODEL].Key = DEVPKEY_Sensor_Model;

SensorsComboDriver/SensorsComboDriver.inx

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
/*++
22
;
33
;Copyright (c) Microsoft Corporation. All rights reserved.
4+
;Copyright (c) Framework Computer Inc. All rights reserved.
45
;
56
;Module Name:
67
; SensorsComboDriver.INF
78
;
89
;Abstract:
9-
; INF file for installing the Sensors Combo Driver
10-
;
11-
;Installation Notes:
12-
; Using Devcon: Type "devcon install SensorsComboDriver.inf umdf2\SensorsComboDriver" to install
10+
; INF file for installing the Framework Sensor Driver
1311
;
1412
;--*/
1513
[Version]
@@ -76,8 +74,8 @@ UmdfExtensions = SensorsCx0102
7674

7775
[Strings]
7876
;Localizable Strings
79-
MediaDescription = "Windows Sensors Combo Driver"
80-
PROVIDER = "Manufacturer Name"
81-
SensorsComboDriver_DevDesc = "Sensors Combo Driver - ALS, Accelerometer, Orientation"
77+
MediaDescription = "Framework Computer Sensor Driver"
78+
PROVIDER = "Framework Computer Inc"
79+
SensorsComboDriver_DevDesc = "Sensor Driver - ALS, Accelerometer, Orientation"
8280

8381
;Non-Localizable Strings

SensorsComboDriver/SimpleDeviceOrientationClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ SimpleDeviceOrientationDevice::Initialize(
126126
&(m_pEnumerationProperties->List[SENSOR_TYPE_GUID].Value));
127127

128128
m_pEnumerationProperties->List[SENSOR_MANUFACTURER].Key = DEVPKEY_Sensor_Manufacturer;
129-
InitPropVariantFromString(L"Manufacturer name",
129+
InitPropVariantFromString(L"Framework Computer Inc",
130130
&(m_pEnumerationProperties->List[SENSOR_MANUFACTURER].Value));
131131

132132
m_pEnumerationProperties->List[SENSOR_MODEL].Key = DEVPKEY_Sensor_Model;

SensorsComboDriver/linearaccelerometerclient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ LinearAccelerometerDevice::Initialize(
128128
&(m_pEnumerationProperties->List[SENSOR_TYPE_GUID].Value));
129129

130130
m_pEnumerationProperties->List[SENSOR_MANUFACTURER].Key = DEVPKEY_Sensor_Manufacturer;
131-
InitPropVariantFromString(L"Framework Computer",
131+
InitPropVariantFromString(L"Framework Computer Inc",
132132
&(m_pEnumerationProperties->List[SENSOR_MANUFACTURER].Value));
133133

134134
m_pEnumerationProperties->List[SENSOR_MODEL].Key = DEVPKEY_Sensor_Model;

0 commit comments

Comments
 (0)