diff options
| author | Thomas Gleixner <[email protected]> | 2024-09-02 11:56:59 +0200 | 
|---|---|---|
| committer | Thomas Gleixner <[email protected]> | 2024-09-02 11:56:59 +0200 | 
| commit | 342123d6913c62be17e5ca1bb325758c5fd0db34 (patch) | |
| tree | 44a9a8aa6910907014bca41bc6272aa27d0e9b50 /scripts/generate_rust_target.rs | |
| parent | 5916be8a53de6401871bdd953f6c60237b47d6d3 (diff) | |
| parent | 3d5c2f8e75a55cfb11a85086c71996af0354a1fb (diff) | |
Merge tag 'timers-v6.11-rc7' of https://git.linaro.org/people/daniel.lezcano/linux into timers/urgent
Pull clocksource driver fixes from Daniel Lezcano:
  - Remove percpu irq related code in the timer-of initialization
    routine as it is broken but also unused (Daniel Lezcano)
  - Fix return -ETIME when delta exceeds INT_MAX and the next event not
    taking effect sometimes (Jacky Bai)
Link: https://lore.kernel.org/all/[email protected]
Diffstat (limited to 'scripts/generate_rust_target.rs')
| -rw-r--r-- | scripts/generate_rust_target.rs | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/scripts/generate_rust_target.rs b/scripts/generate_rust_target.rs index 87f34925eb7b..404edf7587e0 100644 --- a/scripts/generate_rust_target.rs +++ b/scripts/generate_rust_target.rs @@ -162,7 +162,7 @@ fn main() {              "data-layout",              "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128",          ); -        let mut features = "-3dnow,-3dnowa,-mmx,+soft-float".to_string(); +        let mut features = "-mmx,+soft-float".to_string();          if cfg.has("MITIGATION_RETPOLINE") {              features += ",+retpoline-external-thunk";          } @@ -179,7 +179,7 @@ fn main() {              "data-layout",              "e-m:e-p:32:32-p270:32:32-p271:32:32-p272:64:64-i128:128-f64:32:64-f80:32-n8:16:32-S128",          ); -        let mut features = "-3dnow,-3dnowa,-mmx,+soft-float".to_string(); +        let mut features = "-mmx,+soft-float".to_string();          if cfg.has("MITIGATION_RETPOLINE") {              features += ",+retpoline-external-thunk";          } |