Skip to content

Commit

Permalink
Removed redundant match for plugin-type.
Browse files Browse the repository at this point in the history
As of 1.1.4, support for ACPI_SMC_Plugin has been added, which takes plugin-type = 0, meaning that CPUFriend cannot even be loaded without removing the match for plugin-type.

1.1.6 will be released right now, please use it instead!
  • Loading branch information
PMheart committed Jan 26, 2019
1 parent bf5ace5 commit acdbf73
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CPUFriend.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@
MODULE_NAME = org.vanilla.driver.CPUFriend;
MODULE_START = "$(PRODUCT_NAME)_kern_start";
MODULE_STOP = "$(PRODUCT_NAME)_kern_stop";
MODULE_VERSION = 1.1.5;
MODULE_VERSION = 1.1.6;
OTHER_CFLAGS = (
"-mmmx",
"-msse",
Expand Down Expand Up @@ -436,7 +436,7 @@
MODULE_NAME = org.vanilla.driver.CPUFriend;
MODULE_START = "$(PRODUCT_NAME)_kern_start";
MODULE_STOP = "$(PRODUCT_NAME)_kern_stop";
MODULE_VERSION = 1.1.5;
MODULE_VERSION = 1.1.6;
OTHER_CFLAGS = (
"-mmmx",
"-msse",
Expand Down
10 changes: 0 additions & 10 deletions CPUFriend/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,6 @@
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>IOClass</key>
<string>CPUFriendData</string>
<key>IOParentMatch</key>
<dict>
<key>IOPropertyMatch</key>
<dict>
<key>plugin-type</key>
<integer>1</integer>
</dict>
<key>IOProviderClass</key>
<string>IOACPIPlatformDevice</string>
</dict>
<key>IOProbeScore</key>
<integer>6000</integer>
<key>IOPropertyMatch</key>
Expand Down

1 comment on commit acdbf73

@PMheart
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, there was a typo in the note above, where
As of 1.1.4
should be
As of 1.1.5

Sorry!

Please sign in to comment.