Skip to content

Tags: icshwi/tsc

Tags

v4.0.9

Toggle v4.0.9's commit message
Fix compile errors in TscMon when using -Wformat -Wformat-security co…

…mpiler flags

The default Yocto compile flags include-Wformat -Wformat-security -Werror=format-security.
These flags correctly cause a compilation error for certain fprintf calls in the TscMon code, i.e.

    fprintf(stderr, __gscope_save_usage);

fprintf expects some formatting arguments, but is not getting any in this case.

Use the following instead:

    fprintf(stderr, "%s", __gscope_save_usage);

v4.0.8

Toggle v4.0.8's commit message
Always include stdint.h when compiling with GNU_SOURCE defined

Prevents compilation errors when using gcc > 8.3.0 and the GNU_SOURCE macro

[ICSHWI-5585]

v4.0.7

Toggle v4.0.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix compilation error in TscMon when not using GCC C99 mode (#14)

error: ‘for’ loop initial declarations are only allowed in C99 mode

[ICSHWI-4906]

v4.0.6

Toggle v4.0.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Dev/acq1430 (#10)

* Fix address of sample buffers (TMEM address)

* Update version to v4.0.6

v4.0.5

Toggle v4.0.5's commit message
Merge branch 'master' of github.com:icshwi/tsc

v4.0.4

Toggle v4.0.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #6 from icshwi/dev/adc3110_reset

Update to v4.0.4

v4.0.3

Toggle v4.0.3's commit message
Update to version v4.0.3

v4.0.2

Toggle v4.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request #3 from icshwi/devel/version

Update driver to 4.0.2

v4.0.1

Toggle v4.0.1's commit message
Update driver to 4.0.1

v4.0.0

Toggle v4.0.0's commit message
* Update driver version to 4.0.0

* Sync that version with kernel module version of tsc and pon